File size: 294 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 | import { lazyLoad } from '@react-page/editor';
// lazyload everything to avoid accidental bundle size increase
export const RaReactPageInput = lazyLoad(() => import('./RaReactPageInput'));
export const RaSelectReferenceInputField = lazyLoad(
() => import('./RaSelectReferenceInputField')
);
|