UNPKG

@e-group/redux-modules

Version:

eGroup team react-redux modules that share across projects.

6 lines 370 B
import { createAction } from '@reduxjs/toolkit'; import { INITIALIZE_DIALOG, OPEN_DIALOG, CLOSE_DIALOG, SET_DIALOG_DATA } from './types'; export const initializeDialog = createAction(INITIALIZE_DIALOG); export const openDialog = createAction(OPEN_DIALOG); export const closeDialog = createAction(CLOSE_DIALOG); export const setDialogData = createAction(SET_DIALOG_DATA);