Skip to content

Instantly share code, notes, and snippets.

@thehappybug
Last active June 15, 2018 13:56
Show Gist options
  • Save thehappybug/153a4ea62a34ed803beef7d8baaa1a0f to your computer and use it in GitHub Desktop.
Save thehappybug/153a4ea62a34ed803beef7d8baaa1a0f 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>();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment