From dffedc93c4bc47ddc3ccce5b1a3904658c328ef1 Mon Sep 17 00:00:00 2001 From: SandraBergstrom Date: Tue, 20 Jun 2023 12:57:54 +0000 Subject: [PATCH] #10 Add signup form to route --- src/App.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/App.js b/src/App.js index 2a323ff..be989b1 100644 --- a/src/App.js +++ b/src/App.js @@ -3,6 +3,7 @@ import NavBar from './components/NavBar'; import Container from 'react-bootstrap/Container'; import { Route, Switch } from 'react-router-dom'; import './api/axiosDefaults' +import SignUpForm from './pages/auth/SignUpForm'; function App() { @@ -13,7 +14,7 @@ function App() {

Home Page

} />

Login!

} /> -

Sign up!

} /> + } />

Page not found!

} />