Exciting things are coming! Buildiba is under construction. A better way to connect builders and suppliers.
1import { useState } from 'react'2import { Switch } from '@headlessui/react'34function NotificationSetting() {5 const [enabled, setEnabled] = useState(true)67 return (8 <form action="/notification-settings" method="post">9 <Switch10 checked={enabled}11 onChange={setEnabled}12 name="notifications"13 >14 {/* ... */}15 </Switch>16 <button>Submit</button>17 </form>18 )19}