Lazy Loading & Code Splitting

What is the recommended way to implement lazy loading for React components?
const LazyComponent = React.lazy(() => import('./MyComponent'));

function App() {
  return (
    <Suspense fallback={<LoadingSpinner />}>
      <LazyComponent />
    </Suspense>
  );
}
Next Question (5/20)