Added tech routing paths and basic structure of landing page + sign in + reducers BOD-95
This commit is contained in:
@@ -7,11 +7,12 @@ import messagingReducer from "./messaging/messaging.reducer";
|
||||
import emailReducer from "./email/email.reducer";
|
||||
import modalsReducer from "./modals/modals.reducer";
|
||||
import applicationReducer from "./application/application.reducer";
|
||||
import techReducer from "./tech/tech.reducer";
|
||||
const persistConfig = {
|
||||
key: "root",
|
||||
storage,
|
||||
whitelist: ["messaging"],
|
||||
blacklist: ["user", "email", "modals"],
|
||||
blacklist: ["user", "email", "modals", "tech"],
|
||||
};
|
||||
|
||||
const rootReducer = combineReducers({
|
||||
@@ -20,6 +21,7 @@ const rootReducer = combineReducers({
|
||||
email: emailReducer,
|
||||
modals: modalsReducer,
|
||||
application: applicationReducer,
|
||||
tech: techReducer,
|
||||
});
|
||||
|
||||
export default persistReducer(persistConfig, rootReducer);
|
||||
|
||||
Reference in New Issue
Block a user