Created
April 18, 2018 02:23
-
-
Save peterpme/928be0dfd7873a2a50298aebebbbbda6 to your computer and use it in GitHub Desktop.
LOADING
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
class InfoScreen extends React.PureComponent { | |
render() { | |
if (this.props.loading) return <ActivityIndicator /> | |
return ( | |
<View style={styles.container}> | |
<Text>Hi</Text> | |
</View> | |
) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment