WIP: React
This commit is contained in:
parent
ce9e9f3e0d
commit
4c4e689af4
20 changed files with 31671 additions and 0 deletions
16
web/src/index.js
Normal file
16
web/src/index.js
Normal file
|
@ -0,0 +1,16 @@
|
|||
import * as React from 'react';
|
||||
import ReactDOM from 'react-dom';
|
||||
import CssBaseline from '@mui/material/CssBaseline';
|
||||
import { ThemeProvider } from '@mui/material/styles';
|
||||
import App from './App';
|
||||
import theme from './theme';
|
||||
import Dashboard from "./Dashboard";
|
||||
|
||||
ReactDOM.render(
|
||||
<ThemeProvider theme={theme}>
|
||||
{/* CssBaseline kickstart an elegant, consistent, and simple baseline to build upon. */}
|
||||
<CssBaseline />
|
||||
<App />
|
||||
</ThemeProvider>,
|
||||
document.querySelector('#root'),
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue