mirror of
https://github.com/TrentSPalmer/fcc-challenges.git
synced 2025-07-05 10:33:16 -07:00
9 lines
255 B
JavaScript
9 lines
255 B
JavaScript
import { combineReducers } from "redux";
|
|
import colorCounterReducer from "./colorCounterReducer";
|
|
import asyncQuoteReducer from "./asyncQuoteReducer";
|
|
|
|
export default combineReducers({
|
|
colorCount: colorCounterReducer,
|
|
newQuote: asyncQuoteReducer,
|
|
});
|