added grid to canvas area.

This commit is contained in:
2025-07-08 13:02:20 -07:00
parent 8e8206c041
commit e3d4054e0c
+10
View File
@@ -18,6 +18,16 @@ function App() {
<GridItem colSpan={1}>
<Sidebar />
</GridItem>
<GridItem colSpan={1}>
<Grid
templateRows="repeat(6 1fr)"
templateColumns="repeat(6 1fr)"
height="100vh"
width="100vw"
>
<Widgets></Widgets>
</Grid>
</GridItem>
</Grid>
);
}