--- import { ArticleData } from "@extractus/article-extractor"; const article = Astro.props.article; export interface Props { article: ArticleData; } --- { article ? (

{article.title}

by {article.author}

) : ( "" ) }