noway.moe/src/components/FormattedDate.astro

18 lines
224 B
Text
Raw Normal View History

2023-12-25 20:01:37 -07:00
---
interface Props {
date: Date;
}
const { date } = Astro.props;
---
<time datetime={date.toISOString()}>
{
date.toLocaleDateString('en-us', {
year: 'numeric',
month: 'short',
day: 'numeric',
})
}
</time>