refactor: component viewer use state for timeout so timeout isnt set if no render eventually occurs

This commit is contained in:
Mo
2022-05-17 22:58:55 -05:00
parent aeae2b644f
commit a77bf5b525
4 changed files with 84 additions and 46 deletions

View File

@@ -54,10 +54,6 @@ export abstract class PureComponent<P = PureComponentProps, S = PureComponentSta
this.deinit()
}
render() {
return <div>Must override</div>
}
public get appState(): AppState {
return this.application.getAppState()
}