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:
Ely Lucas
2021-10-15 15:29:25 -06:00
committed by GitHub
parent 3451a34ad0
commit f3e492c897
13 changed files with 197 additions and 46 deletions

View File

@ -0,0 +1,3 @@
import React from 'react';
export type ReactComponentOrElement = React.ComponentClass<any, any> | React.FC<any> | JSX.Element;

View File

@ -2,3 +2,4 @@ export * from './RouteAction';
export * from './RouteInfo';
export * from './RouterDirection';
export * from './RouterOptions';
export * from './ReactComponentOrElement';