mirror of
https://github.com/morten-olsen/morten-olsen.github.io.git
synced 2026-02-08 01:46:28 +01:00
18 lines
224 B
Plaintext
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>
|