Add initial widget functionality using react-grid-layout and react-resizable

This commit is contained in:
Daniel S. Hansen
2025-07-09 15:20:29 -07:00
parent ed05ea8caf
commit e0fc1a98ac
6 changed files with 150 additions and 3 deletions
+2 -1
View File
@@ -1,6 +1,7 @@
import { useState } from 'react'
import Header from './components/header.jsx';
import Sidebar from './components/sidebar.jsx';
import Widget from './components/Widget.jsx'
import { Grid, GridItem } from "@chakra-ui/react"
import { Box } from "@chakra-ui/react"
@@ -25,7 +26,7 @@ function App() {
height="100%"
width="100%"
>
{/* <Widgets></Widgets> */}
<Widget />
</Grid>
</GridItem>
</Grid>