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);
|