Last active
May 14, 2020 01:01
-
-
Save jsorkin24/3182e0377a5115dcf506d6b53cdebf78 to your computer and use it in GitHub Desktop.
loading/index.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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