mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-26 09:16:22 +02:00
8 lines
273 B
TypeScript
8 lines
273 B
TypeScript
import { atom } from "jotai";
|
|
|
|
export type RightPanelTab = "sources" | "report";
|
|
|
|
export const rightPanelTabAtom = atom<RightPanelTab>("sources");
|
|
|
|
/** Whether the right panel is collapsed (hidden but state preserved) */
|
|
export const rightPanelCollapsedAtom = atom(false);
|