skyfalldev/src/components/FormattedDate.astro
SkyfallWasTaken 3d317a8a45 Formatting
2024-07-06 12:56:31 +01:00

17 lines
240 B
Text

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