Skip to content

Instantly share code, notes, and snippets.

@jacobp100
Created March 23, 2018 21:37
Show Gist options
  • Save jacobp100/473b9b77c809b6e12f8abaaf5b95dc47 to your computer and use it in GitHub Desktop.
Save jacobp100/473b9b77c809b6e12f8abaaf5b95dc47 to your computer and use it in GitHub Desktop.
const LoadsUserWithLoadingSpinner = () => (
<React.Timeout ms={300}>
{didTimeout ? (
<p>Loading...</p>
) : (
<UsesData />
)}
</React.Timeout>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment