Skip to content

Instantly share code, notes, and snippets.

@jvandenaardweg
Last active March 16, 2019 09:43
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 jvandenaardweg/fe75f4756fc9258eb6ec26e62d47d429 to your computer and use it in GitHub Desktop.
Save jvandenaardweg/fe75f4756fc9258eb6ec26e62d47d429 to your computer and use it in GitHub Desktop.
import React from 'react';
import { View, Text } from 'react-native';
import { NetworkContext } from './NetworkProvider';
export class ExampleComponent extends React.PureComponent {
static contextType = NetworkContext;
render() {
return (
<View>
<Text>You are now {this.context.isConnected ? 'online' : 'offline'}</Text>
</View>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment