2019-11-06 18:20:09 +04:00
|
|
|
import DefaultLayout from 'layouts/default/index';
|
|
|
|
import PageHeader from 'components/page-header/index';
|
2019-10-29 17:46:54 +04:00
|
|
|
|
2019-11-06 21:37:16 +04:00
|
|
|
const RoadmapsList = () => (
|
2019-10-29 17:46:54 +04:00
|
|
|
<DefaultLayout>
|
|
|
|
<PageHeader />
|
2019-11-01 09:28:05 +04:00
|
|
|
<div className="container">
|
|
|
|
<p>Show all roadmaps here</p>
|
|
|
|
</div>
|
2019-10-29 17:46:54 +04:00
|
|
|
</DefaultLayout>
|
|
|
|
);
|
|
|
|
|
2019-11-06 21:37:16 +04:00
|
|
|
export default RoadmapsList;
|