mirror of
https://github.com/github/codeql.git
synced 2026-03-29 11:48:16 +02: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 {};
|
|
}
|
|
}
|