feat: add artifacts right-panel tab

This commit is contained in:
CREDO23 2026-06-22 22:32:51 +02:00
parent cd2242147a
commit fb29ea1292

View file

@ -1,6 +1,12 @@
import { atom } from "jotai";
export type RightPanelTab = "sources" | "report" | "editor" | "hitl-edit" | "citation";
export type RightPanelTab =
| "sources"
| "report"
| "editor"
| "hitl-edit"
| "citation"
| "artifacts";
export const rightPanelTabAtom = atom<RightPanelTab>("sources");