Buildiba Logo

Where builders meet suppliers

Exciting things are coming! Buildiba is under construction. A better way to connect builders and suppliers.

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