Skip to content

Instantly share code, notes, and snippets.

@Kosmin
Created March 7, 2017 23:15
Show Gist options
  • Save Kosmin/1ab94a7640f566253fe396a4fe6d5d9e to your computer and use it in GitHub Desktop.
Save Kosmin/1ab94a7640f566253fe396a4fe6d5d9e to your computer and use it in GitHub Desktop.
React Regular Component Example
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