Skip to content

Commit

Permalink
Add WaterDropGrid component to DotGrid.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel264 committed Sep 26, 2024
1 parent f3b3724 commit 694a9ba
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/components/DotGrid.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@

const WaterDropGrid = () => {
return (
<div>
<DotGrid />
</div>
)
};

const GRID_WIDTH = 25;
const GRID_HEIGHT = 25;

const DotGrid = () => {
return <div></div>
}

export default WaterDropGrid;

0 comments on commit 694a9ba

Please sign in to comment.