import React from 'react'; import type { IPage, IPagePopulatedToShowRevision } from '@growi/core'; import dynamic from 'next/dynamic'; import styles from './PageContentFooter.module.scss'; const AuthorInfo = dynamic(() => import('./AuthorInfo').then(mod => mod.AuthorInfo), { ssr: false }); export type PageContentFooterProps = { page: IPage | IPagePopulatedToShowRevision, } export const PageContentFooter = (props: PageContentFooterProps): JSX.Element => { const { page } = props; const { creator, lastUpdateUser, createdAt, updatedAt, } = page; if (page.isEmpty) { return <>; } return (
); };