mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-06-26 21:39:43 +02:00
14 lines
333 B
TypeScript
14 lines
333 B
TypeScript
import { atom } from "jotai";
|
|
|
|
export type RightPanelTab =
|
|
| "sources"
|
|
| "report"
|
|
| "editor"
|
|
| "hitl-edit"
|
|
| "citation"
|
|
| "artifacts";
|
|
|
|
export const rightPanelTabAtom = atom<RightPanelTab>("sources");
|
|
|
|
/** Whether the right panel is collapsed (hidden but state preserved) */
|
|
export const rightPanelCollapsedAtom = atom(false);
|