import React from 'react'; import PropTypes from 'prop-types'; import { withTranslation } from 'react-i18next'; import PageListIcon from './Icons/PageListIcon'; import TimeLineIcon from './Icons/TimeLineIcon'; import CustomNavigation from './CustomNavigation'; import PageList from './PageList'; import PageTimeline from './PageTimeline'; const NotFoundPage = (props) => { const { t } = props; const navTabMapping = { pagelist: { icon: , i18n: t('page_list'), tabContent: , index: 0, }, timeLine: { icon: , i18n: t('Timeline View'), tabContent: , index: 1, }, }; return (
); }; NotFoundPage.propTypes = { t: PropTypes.func.isRequired, // i18next }; export default withTranslation()(NotFoundPage);