20CAKE20.JS
06-components

Components

23

06-components/08-lazy.tsx

Lazy

Example

Official Cake20 View example for lazy.

const ReportPanel = lazy(() => import("./ReportPanel"));

export default () => (
  <Await fallback={<p>Loading report...</p>}>
    <ReportPanel />
  </Await>
);