React.lazy
Thu Mar 09 2023 07:20:20 GMT+0000 (Coordinated Universal Time)
Saved by
@Sumi_Dey
import React, { lazy, Suspense } from 'react';
const LazyComponent = lazy(() => import('./LazyComponent'));
function App() {
return (
<div>
<Suspense fallback={<div>Loading...</div>}>
<LazyComponent />
</Suspense>
</div>
);
}
export default App;
content_copyCOPY
Comments