polsevev.dev/src/components/FormattedDate.astro

18 lines
224 B
Text
Raw Normal View History

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