J'ai un composant qui va afficher Array of String. Le code ressemble à ceci. React.createClass({ render() { <div> this.props.data.map(t => <span>t</span>) </div> } }) Cela fonctionne parfaitement bien. ie si props.data = ['tom', 'jason', 'chris'] Le résultat rendu dans...