Files
thiloho.github.io/src/components/Date.astro

18 lines
271 B
Plaintext

---
interface Props {
date: Date;
}
const { date } = Astro.props;
---
<time datetime={date.toISOString()} class="underline decoration-dotted">
{
date.toLocaleString("en-us", {
year: "numeric",
month: "long",
day: "numeric",
})
}
</time>