Created
September 18, 2017 09:12
-
-
Save JeansBolong/b6251ae62194ce2b149b66f6780f293a to your computer and use it in GitHub Desktop.
React STUFF
This file contains 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
constructor(){this.state = {isLoading: true} } | |
componentDidMount() { this.setState ({isLoading: false})} | |
render(){ | |
return( | |
this.state.isLoading? *showLoadingScreen* : *yourPage()*) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment