# 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}

` )}
```