Skip to content

Instantly share code, notes, and snippets.

@pjcodesjs
Created March 17, 2023 03:30
Show Gist options
  • Save pjcodesjs/5cda238f985eff289a2c00d0f897b627 to your computer and use it in GitHub Desktop.
Save pjcodesjs/5cda238f985eff289a2c00d0f897b627 to your computer and use it in GitHub Desktop.
import React, { Suspense } from 'react';
function App() {
return (
<div>
<Suspense fallback={<div>Loading...</div>}>
<MyComponent />
</Suspense>
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment