auxiliares.js
343 Bytes
export const SELECCIONAR_DEPARTAMENTO = 'SELECCIONAR_DEPARTAMENTO'
export const seleccionarDepartamento = (departamentoId) => ({
type: SELECCIONAR_DEPARTAMENTO,
departamentoId
})
export const SELECCIONAR_DISTRITO = 'SELECCIONAR_DISTRITO'
export const seleccionarDistrito = (distritoId) => ({
type: SELECCIONAR_DISTRITO,
distritoId
})