cozy/src/components/article.astro
2023-05-11 17:16:14 +02:00

23 lines
359 B
Text

---
import { ArticleData } from "@extractus/article-extractor";
const article = Astro.props.article;
export interface Props {
article: ArticleData;
}
---
{
article ? (
<article>
<h1>{article.title}</h1>
<p>
by <em>{article.author}</em>
</p>
<content set:html={article.content} />
</article>
) : (
""
)
}