mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-16 10:01:59 +08:00
fix(react): overlays shown with useIonModal and useIonPopover no longer render outside of main react tree
closes #23516 and #23516
This commit is contained in:
3
packages/react/src/models/ReactComponentOrElement.ts
Normal file
3
packages/react/src/models/ReactComponentOrElement.ts
Normal file
@ -0,0 +1,3 @@
|
||||
import React from 'react';
|
||||
|
||||
export type ReactComponentOrElement = React.ComponentClass<any, any> | React.FC<any> | JSX.Element;
|
@ -2,3 +2,4 @@ export * from './RouteAction';
|
||||
export * from './RouteInfo';
|
||||
export * from './RouterDirection';
|
||||
export * from './RouterOptions';
|
||||
export * from './ReactComponentOrElement';
|
||||
|
Reference in New Issue
Block a user