--- interface Props { post: any; pageInfo?: any; } const { post, pageInfo } = Astro.props; --- {post ? (

{post.title}

{post.date && }
{post.content &&
}
) : (
Новость не найдена
)}