D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
ebrokers.online
/
node_modules
/
eslint-plugin-react
/
lib
/
util
/
Filename :
lifecycleMethods.js
back
Copy
/** * @fileoverview lifecycle methods * @author Tan Nguyen */ 'use strict'; module.exports = { instance: [ 'getDefaultProps', 'getInitialState', 'getChildContext', 'componentWillMount', 'UNSAFE_componentWillMount', 'componentDidMount', 'componentWillReceiveProps', 'UNSAFE_componentWillReceiveProps', 'shouldComponentUpdate', 'componentWillUpdate', 'UNSAFE_componentWillUpdate', 'getSnapshotBeforeUpdate', 'componentDidUpdate', 'componentDidCatch', 'componentWillUnmount', 'render', ], static: [ 'getDerivedStateFromProps', ], };