maciejpedzi.ch/src/components/FormattedDate.astro

12 lines
166 B
Plaintext
Raw Normal View History

2023-04-19 19:18:50 +02:00
---
export interface Props {
2023-04-26 10:23:17 +02:00
date: Date;
2023-04-19 19:18:50 +02:00
}
const { date } = Astro.props;
---
<time datetime={date.toISOString()}>
2023-04-26 10:23:17 +02:00
{date.toISOString().substring(0, 10)}
2023-04-19 19:18:50 +02:00
</time>