AllenYuan

login unload

May 5th, 2020
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //...
  2.   onUnload: () =>
  3.     dispatch({ type: 'LOGIN_PAGE_UNLOADED' })
  4. });
  5.  
  6. class Login extends React.Component {
  7.  
  8.   componentWillUnmount() {
  9.     this.props.onUnload();
  10.   }
  11. //...
Add Comment
Please, Sign In to add comment