mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-11 21:11:48 +01:00
6 lines
193 B
TypeScript
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);
|