ref(TS) Convert some native components to TS (#13200)

This commit is contained in:
Robert Pintilii
2023-04-12 16:58:42 +03:00
committed by GitHub
parent 046f9c53ab
commit 84ad0200a8
41 changed files with 285 additions and 335 deletions

View File

@@ -25,7 +25,7 @@ export interface IState {
/**
* An abstract implementation of a dialog on Web/React and mobile/react-native.
*/
export default class AbstractDialog<P extends IProps, S extends IState>
export default class AbstractDialog<P extends IProps, S extends IState = IState>
extends Component<P, S> {
_mounted: boolean;