blog.z0x.ca/src/components/FormattedDate.astro
2024-09-10 10:08:41 -07:00

17 lines
239 B
Text

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