import { atom } from "jotai"; export type RightPanelTab = "sources" | "report"; export const rightPanelTabAtom = atom("sources"); /** Whether the right panel is collapsed (hidden but state preserved) */ export const rightPanelCollapsedAtom = atom(false);