website/src/components/FormattedDate.astro
2024-08-15 07:14:24 +02:00

18 lines
224 B
Plaintext

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