mirror of
https://github.com/docmost/docmost.git
synced 2026-05-07 06:23:06 +08:00
9b682c8af5
* replace next with vite * disable strictmode (it interferes with collaboration in dev mode)
5 lines
233 B
TypeScript
5 lines
233 B
TypeScript
import { atomWithStorage } from "jotai/utils";
|
|
import { IWorkspacePageOrder } from '@/features/page/types/page.types';
|
|
|
|
export const workspacePageOrderAtom = atomWithStorage<IWorkspacePageOrder | null>("workspace-page-order", null);
|