We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a535453 commit 4c46949Copy full SHA for 4c46949
README.md
@@ -226,10 +226,10 @@ import { Handle, type NodeProps } from "@dschz/solid-flow";
226
function CustomNode(props: NodeProps<{ label: string }, "custom">) {
227
return (
228
<div class="custom-node" style={{ padding: "10px", background: "white" }}>
229
- <Handle type="target" position="top />
+ <Handle type="target" position="top" />
230
<div>{props.data.label}</div>
231
<Handle type="source" position="bottom" id="output-a" />
232
- <Handle type="source" position="bottom id="output-b" style={{ left: "80%" }} />
+ <Handle type="source" position="bottom" id="output-b" style={{ left: "80%" }} />
233
</div>
234
);
235
}
0 commit comments