import { createContext } from 'react'; type ActionMenuContextType = { isInRightDrawer: boolean; onActionExecutedCallback: () => void; }; export const ActionMenuContext = createContext({ isInRightDrawer: false, onActionExecutedCallback: () => {}, });