blob: 1bcce73a2b6735eaae7bd135057b85275b999743 [file] [log] [blame]
Samuel Shuert86826b82024-04-27 16:14:20 -04001---
2interface Props {
3 date: Date;
4}
5
6const { date } = Astro.props;
7---
8
9<time datetime={date.toISOString()}>
10 {
11 date.toLocaleDateString('en-us', {
12 year: 'numeric',
13 month: 'short',
14 day: 'numeric',
15 })
16 }
17</time>