diff --git a/examples/vite-app/src/examples/Backgrounds/index.tsx b/examples/vite-app/src/examples/Backgrounds/index.tsx index 8d6b7280..0cbabf0a 100644 --- a/examples/vite-app/src/examples/Backgrounds/index.tsx +++ b/examples/vite-app/src/examples/Backgrounds/index.tsx @@ -25,7 +25,9 @@ const Flow: FC<{ id: string; bgProps: BackgroundProps[] }> = ({ id, bgProps }) = return ( - {bgProps.map((props, idx) => )} + {bgProps.map((props, idx) => ( + + ))} ); @@ -36,8 +38,13 @@ const Backgrounds: FC = () => ( - + );