import React from 'react'; import { useCalculatorStore } from '../../store/calculatorStore'; export const FireRating: React.FC = () => { const { general, setGeneral } = useCalculatorStore(); const handleChange = (e: React.ChangeEvent) => { const val = parseFloat(e.target.value); setGeneral({ fireRating: { ...general.fireRating, [e.target.name]: val } }); }; return (
Type of Construction
Fire Rating:
hr
hr
); };