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,
format: 'esm',
watch: !__is_prod__,
logLevel: 'info',
});

View File

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