FuzzyOHS
In developmentTesting invitations coming soon

Intelligent Risk Assessment

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.

FactorSetting.jsx
RiskAssessment.jsx
1import { useState } from 'react'
2import { Switch } from '@headlessui/react'
3
4function FactorSetting() {
5 const [enabled, setEnabled] = useState(true)
6
7 return (
8 <form action="/factor-settings" method="post">
9 <Switch
10 checked={enabled}
11 onChange={setEnabled}
12 name="factors"
13 >
14 {/* ... */}
15 </Switch>
16 <button>Submit</button>
17 </form>
18 )
19}