Skip to content

Instantly share code, notes, and snippets.

@jamesseanwright
Last active January 20, 2020 12:46
Show Gist options
  • Select an option

  • Save jamesseanwright/1800acbcc9efc70f8bc46e337786f05f to your computer and use it in GitHub Desktop.

Select an option

Save jamesseanwright/1800acbcc9efc70f8bc46e337786f05f to your computer and use it in GitHub Desktop.
import * as React from 'react';
const App = () => (
<main>
<h1>My App</h1>
<React.Suspense fallback={<LoadingSpinner />}>
<Page />
<React.Suspense fallback={<MiniSpinner />}>
<PageMetadata />
</React.Suspense>
</React.Suspense>
</main>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment