MCPcopy
hub / github.com/eigent-ai/eigent / SessionProps

Interface SessionProps

src/components/Session/index.tsx:54–57  ·  view source on GitHub ↗

* Active Project: header + chat (left) and a mode-dependent side panel (right). * The side panel is selected from Project.mode. Task/session mode fields are * retained only to render legacy runs that do not have a Project mode yet.

Source from the content-addressed store, hash-verified

52 * retained only to render legacy runs that do not have a Project mode yet.
53 */
54interface SessionProps {
55 /** New Project shell: empty Project that promotes to a live Project on send. */
56 isNewProject?: boolean;
57}
58
59export default function Session({ isNewProject = false }: SessionProps) {
60 const { chatStore, projectStore } = useChatStoreAdapter();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected