Skip to content

Instantly share code, notes, and snippets.

@xuyuji9000
Created May 8, 2017 12:32
Show Gist options
  • Save xuyuji9000/6a24d4c7112826798af42c662c6b25bb to your computer and use it in GitHub Desktop.
Save xuyuji9000/6a24d4c7112826798af42c662c6b25bb to your computer and use it in GitHub Desktop.
A demo showcase how to use create-react-class to create react component.
let TickTock = createReactClass({
componentDidMount: function()
{
// fetch data action here
},
render: function()
{
return (
<div>
render the class
</div>
)
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment