mirror of
https://github.com/facebook/react.git
synced 2026-02-26 18:58:05 +00:00
13 lines
285 B
JavaScript
13 lines
285 B
JavaScript
var React = require('React');
|
|
var ReactComponentWithPureRenderMixin = require('ReactComponentWithPureRenderMixin');
|
|
|
|
var MyComponent = React.createClass({
|
|
mixins: [ReactComponentWithPureRenderMixin],
|
|
|
|
render: function() {
|
|
return <div />;
|
|
}
|
|
});
|
|
|
|
module.exports = MyComponent;
|