UNPKG

jsreport-studio

Version:
14 lines (11 loc) 225 B
import * as ActionTypes from './constants.js' export const open = () => ({ type: ActionTypes.OPEN }) export function close () { return (dispatch, getState) => { dispatch({ type: ActionTypes.CLOSE }) } }