import React, { FC, } from 'react'; import { withUnstatedContainers } from './UnstatedUtils'; import AppContainer from '~/client/services/AppContainer'; import PageListItem from './Page/PageListItem'; type IdenticalPathPageProps= { // add props and types here } const jsonNull = 'null'; const IdenticalPathPage:FC = (props:IdenticalPathPageProps) => { const identicalPageDocument = document.getElementById('identical-path-page-list'); const pageDataList = JSON.parse(identicalPageDocument?.getAttribute('data-identical-page-data-list') || jsonNull); const shortbodyMap = JSON.parse(identicalPageDocument?.getAttribute('data-shortody-map') || jsonNull); return (
); }; export default withUnstatedContainers(IdenticalPathPage, [AppContainer]);