diff --git a/space_flow/public/index.html b/space_flow/public/index.html index 7b11caa99..52741e97f 100644 --- a/space_flow/public/index.html +++ b/space_flow/public/index.html @@ -6,9 +6,9 @@ Document - + -
+
\ No newline at end of file diff --git a/space_flow/src/CustomNodes/AgentNode/index.tsx b/space_flow/src/CustomNodes/AgentNode/index.tsx new file mode 100644 index 000000000..8baa59f06 --- /dev/null +++ b/space_flow/src/CustomNodes/AgentNode/index.tsx @@ -0,0 +1,17 @@ +import { Handle, Position } from "reactflow"; + +export default function AgentNode({ data }) { + console.log(data) + return ( +
+ + +
+ Agent data +
+ +
+ ); +} diff --git a/space_flow/src/CustomNodes/ChainNode/index.tsx b/space_flow/src/CustomNodes/ChainNode/index.tsx new file mode 100644 index 000000000..5887d611c --- /dev/null +++ b/space_flow/src/CustomNodes/ChainNode/index.tsx @@ -0,0 +1,17 @@ +import { Handle, Position } from "reactflow"; + +export default function ChainNode({ data }) { + console.log(data) + return ( +
+ + +
+ Chain data +
+ +
+ ); +} diff --git a/space_flow/src/CustomNodes/ModelNode/index.tsx b/space_flow/src/CustomNodes/ModelNode/index.tsx index 7c66a6ccc..29f30dafe 100644 --- a/space_flow/src/CustomNodes/ModelNode/index.tsx +++ b/space_flow/src/CustomNodes/ModelNode/index.tsx @@ -3,7 +3,7 @@ import { Handle, Position } from "reactflow"; export default function ModelNode({ data }) { console.log(data) return ( -
+