maciejpedzi.ch/src/components/FormattedDate.astro

18 lines
231 B
Plaintext
Raw Normal View History

2023-04-19 19:18:50 +02:00
---
export interface Props {
date: Date;
}
const { date } = Astro.props;
---
<time datetime={date.toISOString()}>
{
date.toLocaleDateString('en-us', {
year: 'numeric',
month: 'short',
day: 'numeric',
})
}
</time>