APAmit Patil·Jun 9, 201901How 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}) => { ...AAmit commented