blog.z0x.ca/src/components/FormattedDate.astro
2025-01-14 22:41:22 -05:00

17 lines
241 B
Text

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