Skip to content

Instantly share code, notes, and snippets.

@Kosmin
Last active March 7, 2017 22:55
Show Gist options
  • Save Kosmin/091b55905bfb6b4d70fb1c15f1e237e3 to your computer and use it in GitHub Desktop.
Save Kosmin/091b55905bfb6b4d70fb1c15f1e237e3 to your computer and use it in GitHub Desktop.
React Container Example
import React, { Component }, from 'react';
class Container extends Component {
render() {
console.log('rendering Container');
return (
<div>
<Car details={this.props.firstCarDetails} />
<Car details={this.props.secondCarDetails} />
</div>
)
}
}
const firstCarDetails = {name: 'BMW', color: 'black'};
const secondCarDetails = {name: 'KIA', color: 'red'};
export <Container {firstCarDetails, secondCarDetails} />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment