Fix TS warning about appendChild
This commit is contained in:
parent
27f205e0a3
commit
bcd3e26377
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ interface BackboneViewConstructor {
|
|||
* while we slowly replace the internals of a given Backbone view with React.
|
||||
*/
|
||||
export class BackboneWrapper extends React.Component<Props, {}> {
|
||||
protected el: Element | null = null;
|
||||
protected el: HTMLElement | null = null;
|
||||
protected view: BackboneView | null = null;
|
||||
|
||||
public componentWillUnmount() {
|
||||
|
|
Loading…
Reference in a new issue