mirror of
https://github.com/docmost/docmost.git
synced 2025-11-12 21:52:37 +10:00
* Move sidebar pages from workspace to space level * Replace array sorting with lexicographical fractional indexing * Fixes and updates
5 lines
146 B
TypeScript
5 lines
146 B
TypeScript
import { atom } from "jotai";
|
|
import { SpaceTreeNode } from "@/features/page/tree/types";
|
|
|
|
export const treeDataAtom = atom<SpaceTreeNode[]>([]);
|