({ workflowId }: { workflowId: string })
| 135 | }; |
| 136 | |
| 137 | export 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 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected