mahaplatform/reframe

View on GitHub
src/components/tasks/index.js

Summary

Maintainability
A
0 mins
Test Coverage
import { Singleton } from 'redux-rubberstamp'
import reducer from './reducer'
import tasks from './tasks'
import * as actions from './actions'

export default Singleton({
  namespace: 'reframe.tasks',
  component: tasks,
  reducer,
  actions
})