fix(react): removed exporting of ionRenderToString to decrease bundle size, closes #21917 (#21928)

This commit is contained in:
Ely Lucas
2020-08-17 10:10:54 -06:00
committed by GitHub
parent 753fd2f910
commit 434befea5f
2 changed files with 1 additions and 2 deletions

View File

@ -30,7 +30,7 @@ export * from './IonRedirect';
export * from './IonRouterContext';
// Utils
export { isPlatform, getPlatforms, getConfig, ionRenderToString } from './utils';
export { isPlatform, getPlatforms, getConfig } from './utils';
export * from './hrefprops';
// Ionic Animations

View File

@ -16,7 +16,6 @@ export const createForwardRef = <PropType, ElementType>(ReactComponent: any, dis
export * from './attachProps';
export * from './case';
export * from './ionRenderToString';
export const isPlatform = (platform: Platforms) => {
return isPlatformCore(window, platform);