mirror of
https://github.com/TrentSPalmer/fcc-challenges.git
synced 2025-08-23 18:23:58 -07:00
initial version random-quote-machine
This commit is contained in:
8
random-quote-machine/src/reducers/rootReducer.js
Normal file
8
random-quote-machine/src/reducers/rootReducer.js
Normal file
@@ -0,0 +1,8 @@
|
||||
import { combineReducers } from "redux";
|
||||
import colorCounterReducer from "./colorCounterReducer";
|
||||
import asyncQuoteReducer from "./asyncQuoteReducer";
|
||||
|
||||
export default combineReducers({
|
||||
colorCount: colorCounterReducer,
|
||||
newQuote: asyncQuoteReducer,
|
||||
});
|
Reference in New Issue
Block a user