searchpage implementation

This commit is contained in:
frits000000
2020-11-20 17:00:01 +01:00
parent 6c1247657d
commit 0481ad2bc5
6 changed files with 39 additions and 5 deletions
@@ -11,7 +11,10 @@ import {
import { DefaultLayout } from '../';
//Main routes
import {HomePage} from '../';
import {
HomePage,
InternSearch
} from '../';
//Sub routes
@@ -33,6 +36,7 @@ class GlobalRouter extends React.Component {
<DefaultLayout>
<Switch>
<Route exact path="/" component={HomePage} />
<Route path="/zoeken" component={InternSearch} />
</Switch>
</DefaultLayout>
</Router>