profile ppages implemented

This commit is contained in:
frits000000
2020-11-21 11:33:58 +01:00
parent 02852cc5b1
commit b51f82cd3a
17 changed files with 336 additions and 69 deletions
@@ -13,7 +13,9 @@ import { DefaultLayout } from '../';
//Main routes
import {
HomePage,
InternSearch
InternSearch,
CompanyProfile,
UserProfile,
} from '../';
//Sub routes
@@ -37,6 +39,8 @@ class GlobalRouter extends React.Component {
<Switch>
<Route exact path="/" component={HomePage} />
<Route path="/zoeken" component={InternSearch} />
<Route path="/bedrijfsprofiel" component={CompanyProfile} />
<Route path="/gebruikersprofiel" component={UserProfile} />
</Switch>
</DefaultLayout>
</Router>