const LazyLoadedComponent = lazy(() => import('./LazyLoadedComponent'));
export default LazyLoadedComponent; Then, modify App.tsx to use React.lazy and Suspense :
const Counter = () => { const [count, setCount] = useState(0);
import React, { lazy, Suspense } from 'react'; import './App.css'; import Counter from './Counter';