(res)
| 24 | |
| 25 | // POPULAR |
| 26 | export function retrievePopularMoviesSuccess(res) { |
| 27 | return { |
| 28 | type: types.RETRIEVE_POPULAR_MOVIES_SUCCESS, |
| 29 | popularMovies: res.data |
| 30 | }; |
| 31 | } |
| 32 | |
| 33 | export function retrievePopularMovies(page) { |
| 34 | return function (dispatch) { |
no outgoing calls
no test coverage detected