Files
docmost/client/src/components/navbar/atoms/sidebar-atom.ts
T
Philipinho 4cb7a56f65 feat: comments
* create comment
* reply to comment thread
* edit comment
* delete comment
* resolve comment
2023-11-09 16:52:34 +00:00

7 lines
208 B
TypeScript

import { atomWithWebStorage } from "@/lib/jotai-helper";
import { atom } from 'jotai';
export const desktopSidebarAtom = atomWithWebStorage('showSidebar',true);
export const desktopAsideAtom = atom(false);