ReactDOM.render(<App automobile={data} />, document.getElementById('app'));
render () {
const automobile = this.props.automobile;
return (
<div>
{automobile.map(n => (
<div className="Cars" headerText={n.name}>
....
</div>
))}
</div>
);
}