UNPKG

tandem-front-end

Version:

Visual editor for web components

7 lines (5 loc) 196 B
import { Dispatch, ActionCreator } from "redux"; export const wrapEventToDispatch = ( dispatch: Dispatch<any>, actionCreator: ActionCreator<any> ) => event => dispatch(actionCreator(event));