I'm trying to dynamically build a React element.
let section = <span>Home> {header.section}</span>
...
section += <span> > {location.title}</span>
return (section)
If I don't try and add anything it works fine, when I do the above I get [object Object][object Object]
How do I go about building a React element dynamically?