18 lines
254 B
Text
18 lines
254 B
Text
|
---
|
||
|
interface Props {
|
||
|
date?: Date;
|
||
|
}
|
||
|
|
||
|
const { date = new Date() } = Astro.props;
|
||
|
---
|
||
|
|
||
|
<time datetime={date.toISOString()}>
|
||
|
{
|
||
|
date.toLocaleDateString("en-GB", {
|
||
|
day: "2-digit",
|
||
|
month: "short",
|
||
|
year: "numeric",
|
||
|
})
|
||
|
}
|
||
|
</time>
|