mirror of
https://github.com/docmost/docmost.git
synced 2026-05-07 06:23:06 +08:00
4cb7a56f65
* create comment * reply to comment thread * edit comment * delete comment * resolve comment
7 lines
208 B
TypeScript
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);
|