File tree Expand file tree Collapse file tree 2 files changed +12
-6
lines changed
packages/react/src/components Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,12 @@ import { IonOverlayManager } from './IonOverlayManager';
99import type { IonicReactProps } from './IonicReactProps' ;
1010import { IonAppInner } from './inner-proxies' ;
1111
12- type Props = PropsWithChildren < LocalJSX . IonApp & IonicReactProps & {
13- ref ?: React . Ref < HTMLIonAppElement > ;
14- } > ;
12+ type Props = PropsWithChildren <
13+ LocalJSX . IonApp &
14+ IonicReactProps & {
15+ ref ?: React . Ref < HTMLIonAppElement > ;
16+ }
17+ > ;
1518
1619export class IonApp extends React . Component < Props > {
1720 addOverlayCallback ?: ( id : string , overlay : ReactComponentOrElement , containerElement : HTMLDivElement ) => void ;
Original file line number Diff line number Diff line change @@ -5,9 +5,12 @@ import { NavContext } from '../../contexts/NavContext';
55import type { IonicReactProps } from '../IonicReactProps' ;
66import { IonBackButtonInner } from '../inner-proxies' ;
77
8- type Props = PropsWithChildren < LocalJSX . IonBackButton & IonicReactProps & {
9- ref ?: React . Ref < HTMLIonBackButtonElement > ;
10- } > ;
8+ type Props = PropsWithChildren <
9+ LocalJSX . IonBackButton &
10+ IonicReactProps & {
11+ ref ?: React . Ref < HTMLIonBackButtonElement > ;
12+ }
13+ > ;
1114
1215export class IonBackButton extends React . Component < Props > {
1316 context ! : React . ContextType < typeof NavContext > ;
You can’t perform that action at this time.
0 commit comments