Skip to content

Instantly share code, notes, and snippets.

@perjansson
Last active December 1, 2017 08:41
Show Gist options
  • Save perjansson/31a254094ccd83ab80b7578f00b14962 to your computer and use it in GitHub Desktop.
Save perjansson/31a254094ccd83ab80b7578f00b14962 to your computer and use it in GitHub Desktop.
var CarList = React.createClass({
getInitialState: function() { }
setSelectedCar: function(selectedCar) { }
...
// becomes
class CarList extends React.Component {
state = { }
setSelectedCar = selectedCar => { }
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment