react-pure-props
TypeScript icon, indicating that this package has built-in type declarations

0.1.5 • Public • Published

react-pure-props npm version

It is a little different from the PureComponent of react.

First, compare only the props. If the state does not change, do not re-render.

However, if the update does not change only through setState, it also re-render.

Installation

npm

$ npm install react-pure-props

How to use

import PureProps from "react-pure-props";
 
class Component extends PureProps<{}, {}> {
    public render() {
        return (
            <div />
        );
    }
}

License

MIT License

Copyright (c) 2019 Daybrush

Package Sidebar

Install

npm i react-pure-props

Weekly Downloads

206

Version

0.1.5

License

MIT

Unpacked Size

12.9 kB

Total Files

14

Last publish

Collaborators

  • younkue