react-stateless-lifecycle
v0.0.3
Published
Add react component lifecycle to stateless component
Downloads
4
Readme
React Stateless Lifecycle
Add component did mount and component will receive props to stateless component.
Known issues:
- correct bind this
Example
import addLifecycle from 'react-stateless-lifecycle';
const wrapLifecycle = addLifecycle({
handleComponentDidMount: Function,
handleComponentWillReceiveProps: Function,
});
// ...
export default wrapLifecycle(MyComponent);