mirror of
https://github.com/cupcakearmy/nicco.io.git
synced 2026-07-27 17:56:08 +00:00
18 lines
240 B
Plaintext
18 lines
240 B
Plaintext
---
|
|
interface Props {
|
|
date: Date
|
|
}
|
|
|
|
const { date } = Astro.props
|
|
---
|
|
|
|
<time datetime={date.toISOString()}>
|
|
{
|
|
date.toLocaleDateString(undefined, {
|
|
year: 'numeric',
|
|
month: 'short',
|
|
day: 'numeric',
|
|
})
|
|
}
|
|
</time>
|