UNPKG

react-codemod

Version:
22 lines (15 loc) 357 B
var React = require('react/addons'); // comment above createClass var MyComponent = React.createClass({ render: function() { return <div />; }, mixins: [PureRenderMixin], // comment on componentDidMount componentDidMount() {}, myOwnMethod(foo) { // comment within method }, }); /* comment at end */ module.exports = MyComponent;