We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1963803 commit 33d2078Copy full SHA for 33d2078
sample/app/testComponents/stateful.tsx
@@ -192,19 +192,6 @@ export class Clock extends React.Component<{}, { date: Date }> {
192
1000
193
);
194
}
195
-
196
- shouldComponentUpdate(){
197
- console.log(`[Clock] shouldComponentUpdate`);
198
- return true;
199
- }
200
201
- componentWillUpdate(){
202
- console.log(`[Clock] componentWillUpdate`);
203
204
205
- componentDidUpdate(){
206
- console.log(`[Clock] componentDidUpdate`);
207
208
209
componentWillUnmount() {
210
clearInterval(this.timerID);
@@ -217,7 +204,6 @@ export class Clock extends React.Component<{}, { date: Date }> {
217
218
219
render() {
220
- console.log(`[Clock] render()!`);
221
222
return React.createElement(
223
"textView",
0 commit comments