react-lifecycle-decorators
v0.2.2
Published
Decorators for stateless components
Downloads
17
Maintainers
Readme
Lifecycle decorators
Lifecycle decorators for stateless components
Installation
npm install -S react-lifecycle-decoratorscomponentWillMount(props)
const Component = ()=>(
<div/>
);
export default componentWillMount(props=>props.fetchData())(Component);shouldComponentUpdate(nextProps, props)
const Component = ()=>(
<div/>
);
export default shouldComponentUpdate((nextProps, props)=>false)(Component);componentWillUnmount(props)
const Component = ()=>(
<div/>
);
export default componentWillUnmount(props=>props.somAction())(Component);