Skip to content

Instantly share code, notes, and snippets.

@Dremora
Last active October 14, 2020 12:43
Show Gist options
  • Save Dremora/7e41c3ff4335a53185299b5ea06698fb to your computer and use it in GitHub Desktop.
Save Dremora/7e41c3ff4335a53185299b5ea06698fb to your computer and use it in GitHub Desktop.
Prohibit using React context without provider
import { createContext } from 'react';
interface SystemStatus {
isOnline: boolean;
}
const SystemStatusContext = createContext<SystemStatus>({
get isOnline(): never {
throw new Error('Used outside of SystemStatusContext');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment