import { Dispatch, ActionCreator } from "redux"; export const wrapEventToDispatch = ( dispatch: Dispatch, actionCreator: ActionCreator ) => event => dispatch(actionCreator(event));