Skip to content

Instantly share code, notes, and snippets.

@jsorkin24
Last active May 14, 2020 01:01
Show Gist options
  • Select an option

  • Save jsorkin24/3182e0377a5115dcf506d6b53cdebf78 to your computer and use it in GitHub Desktop.

Select an option

Save jsorkin24/3182e0377a5115dcf506d6b53cdebf78 to your computer and use it in GitHub Desktop.
loading/index.js
import React from 'react'
const LoadingScreen = () => {
return (
<>
<div className='loading-gif'>
<img
alt='owner'
className='gif'
src={require('../assets/loading-animation.gif')}
/>
</div>
</>
)
}
export default LoadingScreen
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment