const BlogPost = ({ post, children, }: { post: any; children: React.ReactNode; }) => { const { title } = post.data; return (

{title}

{children}
); }; export { BlogPost };