mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
12 lines
267 B
JavaScript
12 lines
267 B
JavaScript
class C extends React.Component {
|
|
static getDerivedStateFromProps(props, state) {
|
|
return {};
|
|
}
|
|
shouldComponentUpdate(nextProps, nextState) {
|
|
return true;
|
|
}
|
|
getSnapshotBeforeUpdate(prevProps, prevState) {
|
|
return {};
|
|
}
|
|
}
|