michaelrausch-24/src/components/FormattedDate.astro
2024-10-16 00:10:58 +13:00

18 lines
240 B
Plaintext

---
interface Props {
date: Date;
}
const { date } = Astro.props;
---
<time datetime={date.toISOString()}>
{
date.toLocaleDateString("en-us", {
month: "short",
day: "numeric",
year: "numeric",
})
}
</time>