|
@@ -2,8 +2,10 @@ import React from 'react';
|
|
|
import PropTypes from 'prop-types';
|
|
import PropTypes from 'prop-types';
|
|
|
import { withTranslation } from 'react-i18next';
|
|
import { withTranslation } from 'react-i18next';
|
|
|
import PageListIcon from './Icons/PageListIcon';
|
|
import PageListIcon from './Icons/PageListIcon';
|
|
|
|
|
+import TimeLineIcon from './Icons/TimeLineIcon';
|
|
|
import CustomNavigation from './CustomNavigation';
|
|
import CustomNavigation from './CustomNavigation';
|
|
|
import PageList from './PageList';
|
|
import PageList from './PageList';
|
|
|
|
|
+import PageTimeline from './PageTimeline';
|
|
|
|
|
|
|
|
|
|
|
|
|
const NotFoundPage = (props) => {
|
|
const NotFoundPage = (props) => {
|
|
@@ -16,6 +18,12 @@ const NotFoundPage = (props) => {
|
|
|
tabContent: <PageList />,
|
|
tabContent: <PageList />,
|
|
|
index: 0,
|
|
index: 0,
|
|
|
},
|
|
},
|
|
|
|
|
+ timeLine: {
|
|
|
|
|
+ icon: <TimeLineIcon />,
|
|
|
|
|
+ i18n: t('Timeline View'),
|
|
|
|
|
+ tabContent: <PageTimeline />,
|
|
|
|
|
+ index: 1,
|
|
|
|
|
+ },
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
return (
|