import React from 'react' import { Post } from 'types/payload-types' import Blocks from './Blocks' import Author from './Blocks/Author' interface Props { post: Post locale: string } export default function PostPage(props: Props) { return (
{props?.post.author && typeof props?.post.author !== 'string' && ( )}
) }