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