diff --git a/react/src/components/App.js b/react/src/components/App.js
index 8823a46..a3543df 100644
--- a/react/src/components/App.js
+++ b/react/src/components/App.js
@@ -1,6 +1,7 @@
import * as React from 'react';
import PropTypes from 'prop-types';
import { BrowserRouter as Router, Route } from 'react-router-dom';
+import CssBaseline from '@material-ui/core/CssBaseline';
import 'normalize.css';
import './Container.css';
@@ -17,13 +18,16 @@ export default class App extends React.Component {
render() {
return (
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
);
}
}