Update dashboard

This commit is contained in:
Lakhan Samani 2022-01-08 15:46:39 +05:30
parent ca716ec1dd
commit e0ae6aa2e0
2 changed files with 4 additions and 1 deletions

View File

@ -8,4 +8,5 @@ require('esbuild').build({
splitting: true, splitting: true,
format: 'esm', format: 'esm',
watch: !__is_prod__, watch: !__is_prod__,
logLevel: 'info',
}); });

View File

@ -6,7 +6,9 @@ import { BrowserRouter } from 'react-router-dom';
export default function Example() { export default function Example() {
return ( return (
<ChakraProvider> <ChakraProvider>
<BrowserRouter></BrowserRouter> <BrowserRouter>
<h1>Dashboard</h1>
</BrowserRouter>
</ChakraProvider> </ChakraProvider>
); );
} }