mirror of
https://github.com/docmost/docmost.git
synced 2026-05-16 22:41:30 +08:00
df9110268c
* Move sidebar pages from workspace to space level * Replace array sorting with lexicographical fractional indexing * Fixes and updates
6 lines
185 B
TypeScript
6 lines
185 B
TypeScript
import { atom } from "jotai";
|
|
import { TreeApi } from "react-arborist";
|
|
import { SpaceTreeNode } from "../types";
|
|
|
|
export const treeApiAtom = atom<TreeApi<SpaceTreeNode> | null>(null);
|