import React from 'react'; import PropTypes from 'prop-types'; import { withTranslation } from 'react-i18next'; import PageList from './PageList'; import TimeLine from './TimeLine'; import RecentChanges from './RecentChanges'; import Attachment from './Attachment'; import PageContainer from '../services/PageContainer'; import { withUnstatedContainers } from './UnstatedUtils'; const TopOfTableContents = (props) => { return ( <>
{/* [TODO: setting Footprints' icon by GW-3308] */}
); }; /** * Wrapper component for using unstated */ const TopOfTableContentsWrapper = withUnstatedContainers(TopOfTableContents, [PageContainer]); TopOfTableContents.propTypes = { pageContainer: PropTypes.instanceOf(PageContainer).isRequired, }; export default withTranslation()(TopOfTableContentsWrapper);