Type Alias: LazyElementComponent
type LazyElementComponent = ElementComponent & object;
Defined in: lazy.tsx:33
Type Declaration
displayName?
optional displayName?: string;
loaded
readonly loaded: boolean;
True once the chunk is in memory and rendering is synchronous.
preload()
preload(): Promise<void>;
Import the chunk now. Idempotent; the second call returns the first promise.
Returns
Promise<void>