mirror of
https://github.com/docmost/docmost.git
synced 2026-05-07 06:23:06 +08:00
9b682c8af5
* replace next with vite * disable strictmode (it interferes with collaboration in dev mode)
9 lines
210 B
TypeScript
9 lines
210 B
TypeScript
import { useAtom } from "jotai";
|
|
|
|
export function useToggleSidebar(sidebarAtom: any) {
|
|
const [sidebarState, setSidebarState] = useAtom(sidebarAtom);
|
|
return () => {
|
|
setSidebarState(!sidebarState);
|
|
}
|
|
}
|