From 4f201f0c373c689e598c9ebd83fce3b192ea50ea Mon Sep 17 00:00:00 2001 From: Abbey Yacoe Date: Tue, 26 Nov 2024 11:04:15 +0100 Subject: [PATCH] docs(slide-show-tutorial): remove duplicate export --- .../src/pages/learn/tutorials/slide-shows-with-react-flow.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sites/reactflow.dev/src/pages/learn/tutorials/slide-shows-with-react-flow.mdx b/sites/reactflow.dev/src/pages/learn/tutorials/slide-shows-with-react-flow.mdx index 9578a484..b85c7a93 100644 --- a/sites/reactflow.dev/src/pages/learn/tutorials/slide-shows-with-react-flow.mdx +++ b/sites/reactflow.dev/src/pages/learn/tutorials/slide-shows-with-react-flow.mdx @@ -193,7 +193,7 @@ const nodeTypes = { slide: Slide, }; -export default export default function App() { +export default function App() { const nodes = [ { id: '0', type: 'slide', position: { x: 0, y: 0 }, data: {} }, ];