react-imported-component
Version:
I will import your component, and help to handle it
10 lines (9 loc) • 378 B
TypeScript
import * as React from 'react';
/**
* React.Suspense "as-is" replacement. Automatically "removed" during SSR and "patched" to work accordingly on the clientside
*
* @see {@link HydrationController} has to wrap entire application in order to provide required information
*/
export declare const LazyBoundary: React.FC<{
fallback: NonNullable<React.ReactNode> | null;
}>;