weekstaten page implementatie
This commit is contained in:
parent
9d178aa535
commit
caffae036c
@ -0,0 +1,17 @@
|
|||||||
|
import React from 'react'
|
||||||
|
|
||||||
|
class Weekstaten extends React.Component {
|
||||||
|
constructor(props) {
|
||||||
|
super(props);
|
||||||
|
}
|
||||||
|
|
||||||
|
render() {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
test
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default Weekstaten;
|
||||||
@ -17,6 +17,7 @@ import {
|
|||||||
CompanyProfile,
|
CompanyProfile,
|
||||||
UserProfile,
|
UserProfile,
|
||||||
ContactPage,
|
ContactPage,
|
||||||
|
WeekStaten
|
||||||
} from '../';
|
} from '../';
|
||||||
|
|
||||||
//Sub routes
|
//Sub routes
|
||||||
@ -43,6 +44,7 @@ class GlobalRouter extends React.Component {
|
|||||||
<Route path="/bedrijfsprofiel" component={CompanyProfile} />
|
<Route path="/bedrijfsprofiel" component={CompanyProfile} />
|
||||||
<Route path="/gebruikersprofiel" component={UserProfile} />
|
<Route path="/gebruikersprofiel" component={UserProfile} />
|
||||||
<Route path="/contact" component={ContactPage} />
|
<Route path="/contact" component={ContactPage} />
|
||||||
|
<Route path="/Weekstaten" component={WeekStaten} />
|
||||||
</Switch>
|
</Switch>
|
||||||
</DefaultLayout>
|
</DefaultLayout>
|
||||||
</Router>
|
</Router>
|
||||||
|
|||||||
@ -17,6 +17,7 @@ import InternSearch from "./Pages/Search/InternSearchPage";
|
|||||||
import CompanyProfile from "./Pages/Profile/CompanyProfile";
|
import CompanyProfile from "./Pages/Profile/CompanyProfile";
|
||||||
import UserProfile from "./Pages/Profile/UserProfile";
|
import UserProfile from "./Pages/Profile/UserProfile";
|
||||||
import ContactPage from "./Pages/Contact/Contact";
|
import ContactPage from "./Pages/Contact/Contact";
|
||||||
|
import WeekStaten from "./Pages/Profile/UserFunctions/WeekStaten";
|
||||||
|
|
||||||
//Style
|
//Style
|
||||||
import "./GlobalStyles.css";
|
import "./GlobalStyles.css";
|
||||||
@ -47,4 +48,5 @@ export {
|
|||||||
CompanyProfile,
|
CompanyProfile,
|
||||||
UserProfile,
|
UserProfile,
|
||||||
ContactPage,
|
ContactPage,
|
||||||
|
WeekStaten
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user