import { useWindStore } from '../../store/windStore'; import { ExposureCategory, RiskCategory } from '../../types'; import { InputGroup } from './InputGroup'; export const WindParametersInput = () => { const { inputs, setParameters } = useWindStore(); const { parameters } = inputs; const exposureCategories: { value: ExposureCategory; label: string }[] = [ { value: 'B', label: 'B - Urban/Suburban' }, { value: 'C', label: 'C - Open Terrain' }, { value: 'D', label: 'D - Water Surfaces' }, ]; const riskCategories: { value: RiskCategory; label: string }[] = [ { value: 'I', label: 'I - Low Risk' }, { value: 'II', label: 'II - Standard' }, { value: 'III', label: 'III - Substantial' }, { value: 'IV', label: 'IV - Essential' }, ]; return ( <>