Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save pmkhoa/6f3739549db594ddb16ee5af47f9cfd8 to your computer and use it in GitHub Desktop.
Save pmkhoa/6f3739549db594ddb16ee5af47f9cfd8 to your computer and use it in GitHub Desktop.
class Example extends React.Component<
Props,
State,
Snapshot
> {
static getDerivedStateFromProps(
nextProps: Props,
prevState: State
): $Shape<State> | null {
// ...
}
getSnapshotBeforeUpdate(
prevProps: Props,
prevState: State
): Snapshot {
// ...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment