Skip to content
Snippets Groups Projects
Commit 38262bd3 authored by James D'Alton's avatar James D'Alton
Browse files

forgot this

parent 94b4ed4a
Branches
No related tags found
No related merge requests found
import React from 'react';
import { BrowserRouter as Router, Route, Switch } from 'react-router-dom';
import Dashboard from './SignedIn/Dashboard';
function SignedIn() {
return (
<Router>
<Switch>
<Route exact path='/' component={Dashboard} />
{/* <Route exact path='/CreateForm' component={CreateForm} />
<Route exact path='/AddPartner' component={AddPartner} />
<Route path='/' component={PageNotFound} /> */}
</Switch>
</Router>
);
}
export default SignedIn
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment