Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Hook to read and write values in browser sessionStorage with React state binding.
const [needConfirm, setNeedConfirm] = useLocalStorage("CONFIRM_ORDER", true); return ( <> {/* ... */} <label> Confirm Order <input type="checkbox" checked={needConfirm} onChange={() => { setNeedConfirm(!needConfirm); }} /> </label> </> );