Sha256: 5b0ab88b9b16f8f8e9ad5331d9f364d3fe697d6e550c6c9cd216fd3979945300

Contents?: true

Size: 347 Bytes

Versions: 4

Compression:

Stored size: 347 Bytes

Contents

import { combineReducers } from 'redux';
import { reducers as tasksDashboardReducers } from './Components/TasksDashboard';
import { reducers as taskDetailsReducers } from './Components/TaskDetails';

const reducers = {
  foremanTasks: combineReducers({
    ...tasksDashboardReducers,
    ...taskDetailsReducers,
  }),
};

export default reducers;

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
foreman-tasks-0.16.3 webpack/ForemanTasks/ForemanTasksReducers.js
foreman-tasks-0.16.2 webpack/ForemanTasks/ForemanTasksReducers.js
foreman-tasks-0.16.1 webpack/ForemanTasks/ForemanTasksReducers.js
foreman-tasks-0.17.0 webpack/ForemanTasks/ForemanTasksReducers.js