Upgrade from reactive checklists to a proactive safety culture. FuzzyOHS is a data-driven risk management platform that helps you anticipate challenges before they become incidents. With powerful analytics and an intuitive interface, we provide the foresight your organization needs to keep every frontline worker safe.
1import { useState } from 'react'2import { Switch } from '@headlessui/react'34function FactorSetting() {5 const [enabled, setEnabled] = useState(true)67 return (8 <form action="/factor-settings" method="post">9 <Switch10 checked={enabled}11 onChange={setEnabled}12 name="factors"13 >14 {/* ... */}15 </Switch>16 <button>Submit</button>17 </form>18 )19}