|
@@ -3,6 +3,7 @@ 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 CustomNavigation from './CustomNavigation';
|
|
import CustomNavigation from './CustomNavigation';
|
|
|
|
|
+import PageList from './PageList';
|
|
|
|
|
|
|
|
|
|
|
|
|
const TrashPage = (props) => {
|
|
const TrashPage = (props) => {
|
|
@@ -12,8 +13,7 @@ const TrashPage = (props) => {
|
|
|
pagelist: {
|
|
pagelist: {
|
|
|
icon: <PageListIcon />,
|
|
icon: <PageListIcon />,
|
|
|
i18n: t('page_list'),
|
|
i18n: t('page_list'),
|
|
|
- // [TODO: show trash page list by gw4064]
|
|
|
|
|
- tabContent: t('Trash page list'),
|
|
|
|
|
|
|
+ tabContent: <PageList />,
|
|
|
index: 0,
|
|
index: 0,
|
|
|
},
|
|
},
|
|
|
};
|
|
};
|