Files
yaak/src-web/components/SidebarAtoms.ts
2024-12-20 23:49:15 -08:00

6 lines
193 B
TypeScript

// This is an atom so we can use it in the child items to avoid re-rendering the entire list
import {atom} from "jotai/index";
export const sidebarSelectedIdAtom = atom<string | null>(null);