2019-03-31 12:19:24 +02:00
|
|
|
import { LOAD_ALBUMS_OK } from '../actions';
|
|
|
|
|
|
|
|
|
|
export default (state = [], action) => {
|
|
|
|
|
switch (action.type) {
|
|
|
|
|
case LOAD_ALBUMS_OK:
|
|
|
|
|
const { albums } = action.payload;
|
|
|
|
|
return albums;
|
|
|
|
|
default:
|
|
|
|
|
return state;
|
|
|
|
|
}
|
2018-11-21 14:47:30 +01:00
|
|
|
};
|