Skip to content

Instantly share code, notes, and snippets.

@ChettaDarkkill
Created August 15, 2019 14:52
Show Gist options
  • Save ChettaDarkkill/1992cf25a9da240092f1fba7f9aefbf8 to your computer and use it in GitHub Desktop.
Save ChettaDarkkill/1992cf25a9da240092f1fba7f9aefbf8 to your computer and use it in GitHub Desktop.
const OtherComponent = React.lazy(() => import('./OtherComponent'));
function MyComponent() {
return (
<div>
<OtherComponent />
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment