(res)
| 4 | |
| 5 | // GENRES |
| 6 | export function retrieveMoviesGenresSuccess(res) { |
| 7 | return { |
| 8 | type: types.RETRIEVE_MOVIES_GENRES_SUCCESS, |
| 9 | moviesGenres: res.data |
| 10 | }; |
| 11 | } |
| 12 | |
| 13 | export function retrieveMoviesGenres() { |
| 14 | return function (dispatch) { |
no outgoing calls
no test coverage detected