Files
nicco.io/src/components/FormattedDate.astro
T
2024-11-29 17:58:26 +01:00

18 lines
240 B
Plaintext

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