mirror of
https://github.com/docmost/docmost
synced 2025-03-28 21:13:28 +00:00
17 lines
366 B
TypeScript
17 lines
366 B
TypeScript
import { atomWithWebStorage } from '@/lib/jotai-helper';
|
|
import { atom } from 'jotai';
|
|
|
|
export const desktopSidebarAtom = atomWithWebStorage('showSidebar', true);
|
|
|
|
export const desktopAsideAtom = atom(false);
|
|
|
|
type AsideStateType = {
|
|
tab: string,
|
|
isAsideOpen: boolean,
|
|
}
|
|
|
|
export const asideStateAtom = atom<AsideStateType>({
|
|
tab: '',
|
|
isAsideOpen: false,
|
|
});
|