mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 15:07:13 +08:00
fix(react): callback refs now work correctly with ionic components (#23152)
resolves #23153
This commit is contained in:
committed by
GitHub
parent
004885bfd4
commit
0dd189e2c0
@ -9,7 +9,7 @@ import { createForwardRef } from './utils';
|
||||
interface IonPageProps extends IonicReactProps {}
|
||||
|
||||
interface IonPageInternalProps extends IonPageProps {
|
||||
forwardedRef?: React.RefObject<HTMLDivElement>;
|
||||
forwardedRef?: React.ForwardedRef<HTMLDivElement>;
|
||||
}
|
||||
|
||||
class IonPageInternal extends React.Component<IonPageInternalProps> {
|
||||
|
||||
Reference in New Issue
Block a user