This commit is contained in:
Primakov Alexandr Alexandrovich
2024-10-22 21:29:29 +03:00
commit 2971f2b90d
17 changed files with 11047 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
import React from 'react'
import { BrowserRouter } from 'react-router-dom'
import { ChakraProvider } from '@chakra-ui/react'
import { Dashboard } from './dashboard'
const App = () => {
return (
<ChakraProvider>
<BrowserRouter>
<Dashboard />
</BrowserRouter>
</ChakraProvider>
)
}
export default App