Skip to content

Instantly share code, notes, and snippets.

@treyhuffine
Last active March 5, 2019 00:55
Show Gist options
  • Save treyhuffine/3de8894735f4aca06e81eadb80fb8046 to your computer and use it in GitHub Desktop.
Save treyhuffine/3de8894735f4aca06e81eadb80fb8046 to your computer and use it in GitHub Desktop.
function useContext<T>(context: Context<T>): T;
interface Context<T> {
Provider: Provider<T>;
Consumer: Consumer<T>;
displayName?: string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment