diff --git a/src/pages/dashboard/reactFlowTest/components/handleNode/handleNode.tsx b/src/pages/dashboard/reactFlowTest/components/handleNode/handleNode.tsx
deleted file mode 100644
index 820829a..0000000
--- a/src/pages/dashboard/reactFlowTest/components/handleNode/handleNode.tsx
+++ /dev/null
@@ -1,14 +0,0 @@
-import React from 'react';
-import { Handle, Position } from '@xyflow/react';
-
-export const CustomNode = ({ data }) => {
- return (
- <>
-
- {data.label}
-
-
-
- >
- );
-};
\ No newline at end of file
diff --git a/src/pages/dashboard/reactFlowTest/components/textUpdateNode/TextUpdaterNode.module.less b/src/pages/dashboard/reactFlowTest/components/textUpdateNode/TextUpdaterNode.module.less
deleted file mode 100644
index 99e34e4..0000000
--- a/src/pages/dashboard/reactFlowTest/components/textUpdateNode/TextUpdaterNode.module.less
+++ /dev/null
@@ -1,8 +0,0 @@
-.text-updater-node {
- //width: 150px;
- //height: 80px;
- padding: 20px;
- border-radius: 15px;
- border: 1px solid #cccccc;
- background-color: #fff;
-}
\ No newline at end of file
diff --git a/src/pages/dashboard/reactFlowTest/components/textUpdateNode/TextUpdaterNode.tsx b/src/pages/dashboard/reactFlowTest/components/textUpdateNode/TextUpdaterNode.tsx
deleted file mode 100644
index 872fbf7..0000000
--- a/src/pages/dashboard/reactFlowTest/components/textUpdateNode/TextUpdaterNode.tsx
+++ /dev/null
@@ -1,24 +0,0 @@
-import React, { useCallback } from 'react';
-import style from './TextUpdaterNode.module.less';
-import { Handle, Position } from '@xyflow/react';
-
-export function TextUpdaterNode(props) {
- const onChange = useCallback((evt) => {
- console.log(evt.target.value);
- }, []);
-
- return (
-
-
-
-
-
-
-
-
-
-
-
-
- );
-}
\ No newline at end of file
diff --git a/src/pages/dashboard/reactFlowTest/index.tsx b/src/pages/dashboard/reactFlowTest/index.tsx
deleted file mode 100644
index 98e0280..0000000
--- a/src/pages/dashboard/reactFlowTest/index.tsx
+++ /dev/null
@@ -1,83 +0,0 @@
-import React, { useState, useCallback } from 'react';
-import { ReactFlow, applyNodeChanges, applyEdgeChanges, addEdge, Background, Controls } from '@xyflow/react';
-import '@xyflow/react/dist/style.css';
-import { TextUpdaterNode } from './components/textUpdateNode/TextUpdaterNode';
-
-const nodeTypes = {
- textUpdater: TextUpdaterNode
-};
-
-const initialNodes = [
- {
- id: 'n1',
- position: { x: 0, y: 0 },
- data: { label: 'Node 1' },
- type: 'input'
- },
- {
- id: 'node-1',
- type: 'textUpdater',
- position: { x: 150, y: 0 },
- data: { value: 123 }
- },
- {
- id: 'n2',
- position: { x: 100, y: 100 },
- data: { label: 'Custom Node' }
- }
-];
-
-const initialEdges = [
- {
- id: 'n1-n2',
- source: 'n1',
- target: 'n2'
- },
- {
- id: 'n1-node-1',
- source: 'n1',
- target: 'node-1',
- targetHandle: 'a'
- },
- {
- id: 'n2-node-1',
- source: 'n2',
- target: 'node-1',
- targetHandle: 'a1'
- }
-];
-
-export default function App() {
- const [nodes, setNodes] = useState(initialNodes);
- const [edges, setEdges] = useState(initialEdges);
-
- const onNodesChange = useCallback(
- (changes) => setNodes((nodesSnapshot) => applyNodeChanges(changes, nodesSnapshot)),
- []
- );
- const onEdgesChange = useCallback(
- (changes) => setEdges((edgesSnapshot) => applyEdgeChanges(changes, edgesSnapshot)),
- []
- );
- const onConnect = useCallback(
- (params) => setEdges((edgesSnapshot) => addEdge(params, edgesSnapshot)),
- []
- );
-
- return (
-
-
-
-
-
-
- );
-}
\ No newline at end of file