diff --git a/frontend/packages/app/src/App.tsx b/frontend/packages/app/src/App.tsx index fa38461c01..f51cf54d0b 100644 --- a/frontend/packages/app/src/App.tsx +++ b/frontend/packages/app/src/App.tsx @@ -9,8 +9,8 @@ import { BrowserRouter as Router, Switch, Route, - Link as RouterLink -} from "react-router-dom"; + Link as RouterLink, +} from 'react-router-dom'; const useStyles = makeStyles(theme => ({ root: { @@ -36,20 +36,19 @@ const useStyles = makeStyles(theme => ({ const App: FC<{}> = () => { return ( - - - - - - - - - - - - - - ); + + + + + + + + + + + + + ); }; const Home: FC<{}> = () => { @@ -75,10 +74,10 @@ const Login: FC<{}> = () => { Go to Home - ); -} + ); +}; -const AppShell: FC<{}> = ({children}) => { +const AppShell: FC<{}> = ({ children }) => { const classes = useStyles(); return ( @@ -86,12 +85,10 @@ const AppShell: FC<{}> = ({children}) => {
-
- {children} -
+
{children}
); -} +}; export default App; diff --git a/frontend/packages/plugins/login/src/components/LoginComponent/LoginComponent.tsx b/frontend/packages/plugins/login/src/components/LoginComponent/LoginComponent.tsx index a9dc81d93c..31caa7d4db 100644 --- a/frontend/packages/plugins/login/src/components/LoginComponent/LoginComponent.tsx +++ b/frontend/packages/plugins/login/src/components/LoginComponent/LoginComponent.tsx @@ -1,18 +1,35 @@ import React, { FC, Fragment } from 'react'; import Button from '@material-ui/core/Button'; import TextField from '@material-ui/core/TextField'; +import Grid from '@material-ui/core/Grid'; const LoginComponent: FC<{}> = () => { return ( - - + + ); };