# Box-link-group ## Examples ```html First Item Description for the first item Second Item Description for the second item ``` ### ManyItems ```html ${Array.from({ length: 5 }, (_, i) => i + 1).map( (i) => html` Template ${i} Description for template ${i} ` )} ```
Description for the first item
Description for the second item
Description for template ${i}