Skip to content

Instantly share code, notes, and snippets.

@R-SE
Created May 13, 2018 23:04
Show Gist options
  • Save R-SE/e582473e63e681a3ad99100c0b1bfcb1 to your computer and use it in GitHub Desktop.
Save R-SE/e582473e63e681a3ad99100c0b1bfcb1 to your computer and use it in GitHub Desktop.
React Notes

Main points:

  • stateful/ES6 class components vs stateless/functional components
class App extends React.Component {
  constructor(props) {
    super(props)
  }
  render() {
    return (
      <div><VideoPlayer /></div>
    )
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment