React v15 has made a change where elements of arrays in JSX are now rendered as
<!--react-text:some_id-->text<!--/react-text-->
instead of spans. I've searched for a solution but haven't been able to figure out how to apply CSS styles to these elements. Is it possible, or do I need to manually map the array to generate spans and then apply CSS to them?
For example:
this.props.items.map((item,i) => { return <span>{item}</span>})