diff --git a/Frontend/src/components/App.js b/Frontend/src/components/App.js index 37d6b9b..b0b9c64 100644 --- a/Frontend/src/components/App.js +++ b/Frontend/src/components/App.js @@ -1,11 +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 ab5a99a..946cbe7 100644 --- a/Frontend/src/components/Login.js +++ b/Frontend/src/components/Login.js @@ -1,15 +1,40 @@ 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 ( +
+ + + + +
+ + ) } } -export default App; \ No newline at end of file +export default Login; \ No newline at end of file