mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
14 lines
254 B
JavaScript
14 lines
254 B
JavaScript
class Reads extends React.Component {
|
|
constructor() {
|
|
this.state.p1;
|
|
|
|
this.state.p2a.p2b;
|
|
|
|
this.setState((prevState, props) => prevState.p3);
|
|
}
|
|
|
|
componentDidUpdate(prevProps, prevState) {
|
|
prevState.p4;
|
|
}
|
|
}
|