From 694a9ba65bdeabb686abf5d7ceb1323f7c3c0059 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=E2=80=A6?= Date: Thu, 26 Sep 2024 21:23:17 +0100 Subject: [PATCH] Add WaterDropGrid component to DotGrid.tsx --- src/components/DotGrid.tsx | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/components/DotGrid.tsx diff --git a/src/components/DotGrid.tsx b/src/components/DotGrid.tsx new file mode 100644 index 0000000..9dd5b9a --- /dev/null +++ b/src/components/DotGrid.tsx @@ -0,0 +1,17 @@ + +const WaterDropGrid = () => { + return ( +
+ +
+ ) +}; + +const GRID_WIDTH = 25; +const GRID_HEIGHT = 25; + +const DotGrid = () => { + return
+} + +export default WaterDropGrid; \ No newline at end of file