Добавить типы, чтобы реагировать контекст $ в потоке
import { createContext } from 'react'
type props = {
name: string,
age: number,
}
export const MyContext: React$Context<props> = createContext({})
export const MyContextProvider = MyContext.Provider
tinydev