-
-
- setName(evt.target.value)}
- className="nodrag input"
- value={name}
- />
-
-
-
-
-
-
-
-
-
-
- >
- )
-}
-
-export default WorkflowForm
diff --git a/src/Managing.WebApp/src/components/organism/Workflow/workflowSidebar.tsx b/src/Managing.WebApp/src/components/organism/Workflow/workflowSidebar.tsx
deleted file mode 100644
index b1cab0f..0000000
--- a/src/Managing.WebApp/src/components/organism/Workflow/workflowSidebar.tsx
+++ /dev/null
@@ -1,35 +0,0 @@
-import type { IFlow } from '../../../generated/ManagingApi'
-import { Loader } from '../../atoms'
-
-import FlowItem from './flowItem'
-
-type IWorkflowSidebar = {
- flows?: IFlow[]
- isLoading: boolean
-}
-
-const WorkflowSidebar = ({ flows, isLoading = true }: IWorkflowSidebar) => {
- const onDragStart = (event: any, data: string) => {
- event.dataTransfer.setData('application/reactflow', data)
- event.dataTransfer.effectAllowed = 'move'
- }
-
- if (isLoading) {
- return