From 25b25f7d5129b7856c956b84de9dc32b42e444ed Mon Sep 17 00:00:00 2001 From: moklick Date: Tue, 21 Mar 2023 11:44:39 +0100 Subject: [PATCH] chore(examples): format --- .../vite-app/src/examples/Backgrounds/index.tsx | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) 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 = () => ( - + );