Skip to content

Instantly share code, notes, and snippets.

View mrtoluadesina's full-sized avatar
🎯
Focusing

Produxts Guy mrtoluadesina

🎯
Focusing
View GitHub Profile
// without lazy
import OtherComponent from './OtherComponent';
// with lazy
const OtherComponent = React.lazy(() => import('./OtherComponent'));