mirror of
https://github.com/Shadowfita/docmost.git
synced 2026-07-21 15:32:48 +10:00
9b682c8af5
* replace next with vite * disable strictmode (it interferes with collaboration in dev mode)
5 lines
136 B
TypeScript
5 lines
136 B
TypeScript
import { atom } from "jotai";
|
|
import { TreeNode } from '@/features/page/tree/types';
|
|
|
|
export const treeDataAtom = atom<TreeNode[]>([]);
|