Skip to content

Instantly share code, notes, and snippets.

@arifkoken
Created July 20, 2017 08:37
Show Gist options
  • Save arifkoken/9251a4f0d0132145832e1e582d959277 to your computer and use it in GitHub Desktop.
Save arifkoken/9251a4f0d0132145832e1e582d959277 to your computer and use it in GitHub Desktop.
var Content = React.createClass(
{
getDefaultProps()
{
return { name: 'UMUT' };
},
render()
{
return <div><h3>{this.props.name}</h3></div>
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment