blob: 9101fe4839b82e8078093c0ee64ef49a4652d223 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import { LISTA_PEDIDO } from 'ba-actions/actionTypes';
const initState = {
pedidos : []
}
const pedido = (state = initState, action) => {
switch (action.type) {
case LISTA_PEDIDO:
return { ...state, pedidos: action.payload }
default :
return state
}
}
export default pedido;
|