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