reducers.js 805 B

1234567891011121314151617
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this
  3. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  4. "use strict";
  5. exports.allocations = require("./reducers/allocations");
  6. exports.censusDisplay = require("./reducers/census-display");
  7. exports.diffing = require("./reducers/diffing");
  8. exports.individuals = require("./reducers/individuals");
  9. exports.labelDisplay = require("./reducers/label-display");
  10. exports.treeMapDisplay = require("./reducers/tree-map-display");
  11. exports.errors = require("./reducers/errors");
  12. exports.filter = require("./reducers/filter");
  13. exports.sizes = require("./reducers/sizes");
  14. exports.snapshots = require("./reducers/snapshots");
  15. exports.view = require("./reducers/view");