index.js 233 B

12345678910
  1. import { actions, reducer, state } from './state'
  2. import components from './components'
  3. const filters = {
  4. all: players => players
  5. }
  6. const selectors = {}
  7. export default { actions, components, filters, selectors, reducer, state }