nzambello.dev/src/components/FormattedDate.astro

18 lines
244 B
Plaintext
Raw Normal View History

2023-05-30 17:12:28 +02:00
---
export interface Props {
2023-05-31 10:10:31 +02:00
date: Date
2023-05-30 17:12:28 +02:00
}
2023-05-31 10:10:31 +02:00
const { date } = Astro.props
2023-05-30 17:12:28 +02:00
---
<time datetime={date.toISOString()}>
2023-05-31 10:10:31 +02:00
{
date.toLocaleDateString('en-us', {
year: 'numeric',
month: 'short',
day: 'numeric'
})
}
2023-05-30 17:12:28 +02:00
</time>