troylusty.com/src/components/FormattedDate.astro

18 lines
254 B
Text
Raw Normal View History

2024-12-23 21:18:55 +00:00
---
interface Props {
date?: Date;
}
const { date = new Date() } = Astro.props;
---
<time datetime={date.toISOString()}>
{
date.toLocaleDateString("en-GB", {
day: "2-digit",
month: "short",
year: "numeric",
})
}
</time>