Skip to content

Instantly share code, notes, and snippets.

@tatsushitoji
Created December 28, 2018 00:33
Show Gist options
  • Save tatsushitoji/bd7f00f0cbacd18beffce06350a33b10 to your computer and use it in GitHub Desktop.
Save tatsushitoji/bd7f00f0cbacd18beffce06350a33b10 to your computer and use it in GitHub Desktop.
const Conatiner = compose<InnerProps, OutterProps>(
connect(
mapStateToProps,
mapDispatchToProps,
),
getDerivedStateFromProps<Props>((nextProps, prevState) => {
// write somthing
return nextProps;
}),
)(LoginComponent);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment