From 680f6e8b2d6cc86c05131b76b0245ab441b83318 Mon Sep 17 00:00:00 2001 From: Ze-Zheng Wu Date: Sat, 5 Jul 2025 18:23:33 +0800 Subject: [PATCH] chore: change component name for clarity --- examples/react/src/examples/DefaultNodeOverwrite/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/react/src/examples/DefaultNodeOverwrite/index.tsx b/examples/react/src/examples/DefaultNodeOverwrite/index.tsx index 051f4ad4..8c8c0e49 100644 --- a/examples/react/src/examples/DefaultNodeOverwrite/index.tsx +++ b/examples/react/src/examples/DefaultNodeOverwrite/index.tsx @@ -24,7 +24,7 @@ const nodeTypes = { default: CustomNode, }; -const DefaultNodes = () => { +const DefaultNodeOverwrite = () => { return ( @@ -35,7 +35,7 @@ const DefaultNodes = () => { export default function App() { return ( - + ); }