diff options
| author | Ernst Widerberg <ernstwi@kth.se> | 2021-10-21 09:13:24 +0200 |
|---|---|---|
| committer | Ernst Widerberg <ernstwi@kth.se> | 2021-10-21 09:13:24 +0200 |
| commit | 0b3ffae0a3609f53828e17962b7788acc9eb2932 (patch) | |
| tree | 2e9058308cfdd1d2a532dbf9713c40e796747df5 /src/index.js | |
| parent | ba1d8adae550cbbb5322b1f7ec79a58deeda6371 (diff) | |
Switch semantic-ui to material-ui
TODO: Login component
Diffstat (limited to 'src/index.js')
| -rw-r--r-- | src/index.js | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/index.js b/src/index.js index 83ae8e3..c6d6253 100644 --- a/src/index.js +++ b/src/index.js @@ -1,6 +1,13 @@ import React from "react"; import { render } from "react-dom"; +import CssBaseline from "@mui/material/CssBaseline"; import App from "./components/App"; -render(<App />, document.getElementById("root")); +render( + <> + <CssBaseline /> + <App /> + </>, + document.getElementById("root") +); |
