mirror of
https://github.com/TrentSPalmer/fcc-challenges.git
synced 2025-08-23 10:13:57 -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,
|
|
});
|