From c3c46f653ea2b662ebc42081c19e3c79188a6fab Mon Sep 17 00:00:00 2001 From: Tim Miller-Williams Date: Tue, 23 Sep 2025 17:57:43 +0100 Subject: [PATCH] docs: fix syntax errors in custom nodes and edges example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 872f6a2..48de4f4 100644 --- a/README.md +++ b/README.md @@ -226,10 +226,10 @@ import { Handle, type NodeProps } from "@dschz/solid-flow"; function CustomNode(props: NodeProps<{ label: string }, "custom">) { return (
-
{props.data.label}
- +
); }