My website, rebuilt yet again
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 17 lines 224 B view raw
1--- 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>