(props: Props)
| 62 | public explorer: Explorer_Class; |
| 63 | |
| 64 | constructor(props: Props) { |
| 65 | super(props); |
| 66 | this.state = { |
| 67 | loaded: false, |
| 68 | chromeless: false, |
| 69 | darkTheme: null, |
| 70 | rowCount: null, |
| 71 | fetching: false, |
| 72 | }; |
| 73 | this.viewerOptions = this.getViewerOptions(); |
| 74 | } |
| 75 | |
| 76 | finalize() { |
| 77 | this.explorer && this.explorer.finalize(); |
nothing calls this directly
no test coverage detected