Skip to content

Instantly share code, notes, and snippets.

@tkers
Last active November 12, 2015 12:08
Show Gist options
  • Save tkers/a30830afe8408756d254 to your computer and use it in GitHub Desktop.
Save tkers/a30830afe8408756d254 to your computer and use it in GitHub Desktop.
{
"env": {
"es6": true
},
"plugins": [
"react"
],
"ecmaFeatures": {
"jsx": true,
"experimentalObjectRestSpread": true
},
"rules": {
"react/prop-types": 2
}
}
"use strict";
var React = require("react");
var MyComponent = React.createClass({
render : function () {
var {...other} = this.props;
return (
<div {...other} />
);
}
});
module.exports = MyComponent;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment