diff --git a/Frontend/src/components/App.js b/Frontend/src/components/App.js index 2b80267..b0b9c64 100644 --- a/Frontend/src/components/App.js +++ b/Frontend/src/components/App.js @@ -1,15 +1,22 @@ import React, { Component } from "react"; -import CssBaseline from "@material-ui/core/Button"; +import CssBaseline from "@material-ui/core/CssBaseline"; import { BrowserRouter as Router, Route, Link } from "react-router-dom"; import Login from "./Login.js"; +import { Box } from "@material-ui/core"; + class App extends Component { state = {}; render() { return - - + + + + ; } } diff --git a/Frontend/src/components/Login.js b/Frontend/src/components/Login.js index 7403794..946cbe7 100644 --- a/Frontend/src/components/Login.js +++ b/Frontend/src/components/Login.js @@ -1,11 +1,39 @@ import React, { Component } from "react"; -import Button from "@material-ui/core/Button"; -import Container from '@material-ui/core/Container'; +import TextField from '@material-ui/core/TextField'; +import Grid from '@material-ui/core/Grid'; class Login extends Component { state = {}; render() { - return {} + return ( +
+ + + + +
+ + ) } }