just-paja/improtresk-web

View on GitHub
src/news/sagas/newsDetail.js

Summary

Maintainability
A
0 mins
Test Coverage
import createFetchSaga from '../../sagas/createFetchSaga'

import { getNewsDetailId } from '../selectors'
import { newsDetailFetch } from '../actions'

export default createFetchSaga(newsDetailFetch, {
  payloadSelector: getNewsDetailId,
  payloadReducer: newsId => ({ newsId })
})