mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-04-30 20:54:14 +02: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);
|