-
-
Notifications
You must be signed in to change notification settings - Fork 17
Closed
Labels
documentationImprovements or additions to documentationImprovements or additions to documentationenhancementNew feature or requestNew feature or request
Description
Here is a feature which is already possible today, which is pretty neat:
const MyDialog = createCallable(lazy(() => import('./MyDialog')));This makes a lazy-loadable dialog which is only loaded when it's needed. Very useful!
This could be simplified a bit, for example if there was a createLazyCallable:
const MyDialog = createLazyCallable(() => import('./MyDialog'));Not sure if this is necessary to include in the code or just in the documentation.
desko27
Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentationenhancementNew feature or requestNew feature or request