import React from 'react'; interface PostProps { // HTML string for the blog post body children: string; meta: { title: string; date: Date; readingTime: string; }; } export function Post({ children, meta }: PostProps) { return (

{meta.title}

{meta.date && meta.date instanceof Date && <> } {meta.readingTime && <> {meta.readingTime} }
) }