maciejpedzi.ch/src/components/FormattedDate.astro
2023-04-26 10:23:17 +02:00

12 lines
166 B
Plaintext

---
export interface Props {
date: Date;
}
const { date } = Astro.props;
---
<time datetime={date.toISOString()}>
{date.toISOString().substring(0, 10)}
</time>