Created
March 7, 2017 23:15
-
-
Save Kosmin/1ab94a7640f566253fe396a4fe6d5d9e to your computer and use it in GitHub Desktop.
React Regular Component Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { PropTypes, Component } from 'react'; | |
class Car extends Component { | |
render() { | |
return ( | |
<div> | |
{`Your object: ${details.name} ${details.color}`} | |
</div> | |
); | |
} | |
} | |
export default Car; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment