src/app/components/FrostedGlassPromo/lazy.tsx

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import React from 'react';
import loadable from '@loadable/component';

export default loadable(
  () =>
    import(
      /* webpackChunkName: "frosted_promo" */
      '.'
    ),
  { fallback: <span data-testid="frosted-promo-loader" /> },
);