Skip to content

Instantly share code, notes, and snippets.

@peterpme
Created April 18, 2018 02:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save peterpme/928be0dfd7873a2a50298aebebbbbda6 to your computer and use it in GitHub Desktop.
Save peterpme/928be0dfd7873a2a50298aebebbbbda6 to your computer and use it in GitHub Desktop.
LOADING
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