I have an array of objects such as:
const array = [<Button>abc</Button>, <Button>def</Button>]
where when I render them with:
return array
I get a list of buttons next to each other.
something similar to the top line of this example picture:
However I want to join the buttons so it look like the bottom line. I tried to use array.join("+") but that no longer rendered buttons instead rendering <object object>+<object object>
Is it possible to do this? keep in mind the array needs to be looped to include all items and ideally it knows not to add a + to the last element.
