mirror of
https://github.com/thiloho/thiloho.github.io.git
synced 2025-11-22 02:11:35 +01:00
18 lines
271 B
Plaintext
18 lines
271 B
Plaintext
---
|
|
interface Props {
|
|
date: Date;
|
|
}
|
|
|
|
const { date } = Astro.props;
|
|
---
|
|
|
|
<time datetime={date.toISOString()} class="underline decoration-dotted">
|
|
{
|
|
date.toLocaleString("en-us", {
|
|
year: "numeric",
|
|
month: "long",
|
|
day: "numeric",
|
|
})
|
|
}
|
|
</time>
|