Select the types of activity you want to include in your feed.
1--- 2interface Props { 3 date: Date; 4} 5const { date } = Astro.props; 6--- 7 8<time datetime={date.toISOString()}> 9 { 10 date.toLocaleDateString('en-us', { 11 year: 'numeric', 12 month: 'short', 13 day: 'numeric', 14 }) 15 } 16</time>