MCPcopy Create free account
hub / github.com/allocnode/oh-my-sage / SessionPanelProps

Interface SessionPanelProps

src/components/SessionPanel.tsx:22–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20}
21
22interface SessionPanelProps {
23 sessions: SessionMeta[];
24 activeSessionId?: string;
25 loading?: boolean;
26 onSelectSession: (sessionId: string) => void;
27 onDeleteSession: (sessionId: string) => void;
28 onNewSession: () => void;
29 onRefresh: () => void;
30}
31
32function formatTime(isoString: string): string {
33 const date = new Date(isoString);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected