mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-26 17:26:23 +02:00
9 lines
273 B
TypeScript
9 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);
|