--- interface Props { post: any; pageInfo?: any; } const { post, pageInfo } = Astro.props; --- {post ? ( {post.title} {post.date && {new Date(post.date).toLocaleDateString('ru-RU')}} {post.content && } ) : (