website-astro/src/components/ContentPost.astro

5 lines
70 B
Plaintext
Raw Normal View History

2022-12-02 11:21:18 +01:00
---
const { title, url } = Astro.props;
---
<a href={url}>{title}</a>