mirror of
https://github.com/michaelrausch/michaelrausch-24.git
synced 2025-04-03 23:53:15 +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("en-us", {
|
|
month: "short",
|
|
day: "numeric",
|
|
year: "numeric",
|
|
})
|
|
}
|
|
</time>
|