mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-17 22:37:04 +08:00
8 lines
218 B
TypeScript
8 lines
218 B
TypeScript
import { atomWithStorage } from 'jotai/utils';
|
|
|
|
export const appSidebarOpenAtom = atomWithStorage('app-sidebar-open', true);
|
|
export const appSidebarWidthAtom = atomWithStorage(
|
|
'app-sidebar-width',
|
|
256 /* px */
|
|
);
|