summaryrefslogtreecommitdiff
path: root/src/index.js
diff options
context:
space:
mode:
authorErnst Widerberg <ernstwi@kth.se>2021-10-21 09:13:24 +0200
committerErnst Widerberg <ernstwi@kth.se>2021-10-21 09:13:24 +0200
commit0b3ffae0a3609f53828e17962b7788acc9eb2932 (patch)
tree2e9058308cfdd1d2a532dbf9713c40e796747df5 /src/index.js
parentba1d8adae550cbbb5322b1f7ec79a58deeda6371 (diff)
Switch semantic-ui to material-ui
TODO: Login component
Diffstat (limited to 'src/index.js')
-rw-r--r--src/index.js9
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")
+);