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>
);