just-paja/radio-drama-queen

View on GitHub
src/soundGallery/reducers/index.js

Summary

Maintainability
A
0 mins
Test Coverage
import { combineReducers } from 'redux'

import browser from './browser'
import soundGallerySearch from './soundGallerySearch'
import soundGalleryTarget from './soundGalleryTarget'

export default combineReducers({
  browser,
  search: soundGallerySearch,
  target: soundGalleryTarget
})