Skip to content

Instantly share code, notes, and snippets.

@emanueleDiVizio
Created June 8, 2020 14:55
Show Gist options
  • Save emanueleDiVizio/ca020d7ec921651b0efdf4ca970c4a8a to your computer and use it in GitHub Desktop.
Save emanueleDiVizio/ca020d7ec921651b0efdf4ca970c4a8a to your computer and use it in GitHub Desktop.
const isConnectedSelector = state => state.network.isConnected;
const useNetworkInfo = () => {
const isConnected = useSelector(isConnectedSelector);
return [isConnected];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment