From 2f6eb8bf1fac2299f093655bd7e02495888fe03e Mon Sep 17 00:00:00 2001 From: Tim Glasgow Date: Fri, 22 Jul 2022 21:02:47 -0500 Subject: [PATCH] add rootreducer --- squarenotsquare/redux/RootReducer.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 squarenotsquare/redux/RootReducer.js diff --git a/squarenotsquare/redux/RootReducer.js b/squarenotsquare/redux/RootReducer.js new file mode 100644 index 0000000..4d96634 --- /dev/null +++ b/squarenotsquare/redux/RootReducer.js @@ -0,0 +1,7 @@ +import { combineReducers } from 'redux'; + +const rootReducer = combineReducers({ + +}) + +export default rootReducer; \ No newline at end of file