Browse Source

Corrected pure-render-mixin documentation

Fixed the PureRenderMixin documentation which was incorrectly importing the base React library instead of ReactWithAddons.
main
Vincent Riemer 10 years ago
parent
commit
ce02428d84
  1. 2
      docs/10.7-pure-render-mixin.md

2
docs/10.7-pure-render-mixin.md

@ -11,7 +11,7 @@ If your React component's render function is "pure" (in other words, it renders
Example:
```js
var PureRenderMixin = require('react').addons.PureRenderMixin;
var PureRenderMixin = require('react/addons').addons.PureRenderMixin;
React.createClass({
mixins: [PureRenderMixin],

Loading…
Cancel
Save