From c11d8103bba80f799aa47f4ccb29c777063e3022 Mon Sep 17 00:00:00 2001 From: Tudor Stanciu Date: Wed, 13 May 2020 23:45:16 +0300 Subject: [PATCH] stykes fix --- src/components/App.js | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/src/components/App.js b/src/components/App.js index 1098364..5bbf0e7 100644 --- a/src/components/App.js +++ b/src/components/App.js @@ -7,24 +7,18 @@ import PageNotFound from "./PageNotFound"; import { ToastContainer } from "react-toastify"; import "react-toastify/dist/ReactToastify.css"; import SessionContainer from "../features/session/components/SessionContainer"; -import { makeStyles } from "@material-ui/core/styles"; -import { Container } from "@material-ui/core"; - -const useStyles = makeStyles(() => ({ - content: { - "padding-left": "30px", - "padding-right": "30px" - } -})); function App() { - const classes = useStyles(); + const contentStyle = { + "padding-left": "30px", + "padding-right": "30px" + }; return (

- +
@@ -32,7 +26,7 @@ function App() { - +
); }