Files
morten-olsen.github.io/src/components/foundation/FormattedDate.astro
Morten Olsen 5f79c8da43 init
2023-10-30 11:24:20 +01:00

18 lines
224 B
Plaintext

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