Skip to content

Instantly share code, notes, and snippets.

@yevbar
Created July 13, 2018 19:34
Show Gist options
  • Save yevbar/51b05d6e8d91ae66bf53fbc3194c81fe to your computer and use it in GitHub Desktop.
Save yevbar/51b05d6e8d91ae66bf53fbc3194c81fe to your computer and use it in GitHub Desktop.
const Loading = ({ incomplete }) => {
return incomplete ? null : (
<div>
<div id="loading">
<img src="https://media.giphy.com/media/a6OnFHzHgCU1O/giphy.gif" alt="Loading"/>
</div>
<style jsx>{`
#loading {
text-align: center;
}
`}</style>
</div>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment