Skip to content

Instantly share code, notes, and snippets.

@thehappybug
Last active June 15, 2018 14:14
Show Gist options
  • Save thehappybug/2186693b839012977cdd08496b267048 to your computer and use it in GitHub Desktop.
Save thehappybug/2186693b839012977cdd08496b267048 to your computer and use it in GitHub Desktop.
import * as React from 'react';
interface AppContextInterface {
name: string,
author: string,
url: string
}
const {Provider, Consumer} = React.createContext<AppContextInterface | null>(null);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment