fleet/frontend/redux/reducers.js
Gabe Hernandez efb35b537a
add prettier and have it format all fleet application code (#625)
* add prettier and have it format all js code except website:
:

* trying running prettier check in CI

* fix runs on in CI

* change CI job name

* fix prettier erros and fix CI
2021-04-12 14:32:25 +01:00

30 lines
899 B
JavaScript

import { combineReducers } from "redux";
import { loadingBarReducer } from "react-redux-loading-bar";
import { routerReducer } from "react-router-redux";
import app from "./nodes/app/reducer";
import auth from "./nodes/auth/reducer";
import components from "./nodes/components/reducer";
import entities from "./nodes/entities/reducer";
import errors500 from "./nodes/errors500/reducer";
import notifications from "./nodes/notifications/reducer";
import osquery from "./nodes/osquery/reducer";
import persistentFlash from "./nodes/persistent_flash/reducer";
import redirectLocation from "./nodes/redirectLocation/reducer";
import version from "./nodes/version/reducer";
export default combineReducers({
app,
auth,
components,
entities,
errors500,
loadingBar: loadingBarReducer,
notifications,
osquery,
persistentFlash,
redirectLocation,
routing: routerReducer,
version,
});