Skip to content

Instantly share code, notes, and snippets.

@ajcrites
Last active January 8, 2019 14:05
Show Gist options
  • Select an option

  • Save ajcrites/1f4ce76ff639988fb0b65d80dcb966ea to your computer and use it in GitHub Desktop.

Select an option

Save ajcrites/1f4ce76ff639988fb0b65d80dcb966ea to your computer and use it in GitHub Desktop.
export interface TimesTableContextProps {
pointCount: number;
timesTable: number;
lineColor: string;
setPointCount: value => void;
setTimesTable: value => void;
setLineColor: value => void;
}
export const TimesTableContext = createContext<TimesTableContextProps>({} as any);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment