MCPcopy Create free account
hub / github.com/code-with-antonio/nodebase / EditorHeader

Function EditorHeader

src/features/editor/components/editor-header.tsx:137–147  ·  view source on GitHub ↗
({ workflowId }: { workflowId: string })

Source from the content-addressed store, hash-verified

135};
136
137export const EditorHeader = ({ workflowId }: { workflowId: string }) => {
138 return (
139 <header className="flex h-14 shrink-0 items-center gap-2 border-b px-4 bg-background">
140 <SidebarTrigger />
141 <div className="flex flex-row items-center justify-between gap-x-4 w-full">
142 <EditorBreadcrumbs workflowId={workflowId} />
143 <EditorSaveButton workflowId={workflowId} />
144 </div>
145 </header>
146 );
147};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected