Last active
January 8, 2019 14:05
-
-
Save ajcrites/1f4ce76ff639988fb0b65d80dcb966ea to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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