Select the types of activity you want to include in your feed.
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>