Skip to content

Commit 17e1c42

Browse files
committed
Login/Register
1 parent 7cbc789 commit 17e1c42

File tree

9 files changed

+469
-146
lines changed

9 files changed

+469
-146
lines changed

package-lock.json

+19-18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"@testing-library/jest-dom": "^5.11.9",
99
"@testing-library/react": "^11.2.5",
1010
"@testing-library/user-event": "^12.8.3",
11+
"axios": "^0.21.1",
1112
"react": "^17.0.1",
1213
"react-dom": "^17.0.1",
1314
"react-router-dom": "^5.2.0",

public/assets/login.svg

+9
Loading

public/assets/signup.svg

+9
Loading

src/App.js

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { BrowserRouter as Router, Route, Switch } from "react-router-dom";
44
import LandingPage from "./pages/Landing/LandingPage";
55
import LoginPage from "./pages/LoginPage/LoginPage";
66
import { createMuiTheme, ThemeProvider } from "@material-ui/core";
7+
import SignupPage from "./pages/SignupPage/SignupPage";
78

89
const theme = createMuiTheme({
910
typography: {
@@ -42,6 +43,7 @@ function App() {
4243
<Switch>
4344
<Route exact path="/" component={LandingPage} />
4445
<Route exact path="/login" component={LoginPage} />
46+
<Route exact path="/register" component={SignupPage} />
4547
</Switch>
4648
</Router>
4749
</ThemeProvider>

0 commit comments

Comments
 (0)