cozy/src/components/blog/FormattedDate.astro
2024-12-26 00:10:13 +01:00

17 lines
238 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>