01APAmit PatilHow do I type check context in react ?I have below class and I want to add propTypes to it, I tried different ways but no luck so far. Below is my code import React, { useContext } from 'react' import { appContext} from 'store/store'; const Drawer = ({isOpen, onCloseDrawer}) => { ...Jun 9, 2019A