|
|
@@ -7,10 +7,14 @@ import AppContainer from '~/client/services/AppContainer';
|
|
|
import PageContainer from '~/client/services/PageContainer';
|
|
|
import { withUnstatedContainers } from './UnstatedUtils';
|
|
|
|
|
|
+import { useCreatedAt } from '~/stores/context';
|
|
|
+
|
|
|
const PageContentFooter = (props) => {
|
|
|
const { pageContainer } = props;
|
|
|
+ const { data: createdAt } = useCreatedAt();
|
|
|
+
|
|
|
const {
|
|
|
- createdAt, creator, updatedAt, revisionAuthor,
|
|
|
+ creator, updatedAt, revisionAuthor,
|
|
|
} = pageContainer.state;
|
|
|
|
|
|
return (
|