UNPKG

cra-template-overwolf-typescript-redux

Version:

This is the official [Overwolf TypeScript Redux](https://github.com/AlbericoD/overwolf-modern-react-boilerplate) template for [Create React App](https://github.com/facebook/create-react-app).

10 lines (7 loc) 259 B
import { combineReducers } from "@reduxjs/toolkit"; import background from "screens/background/stores/background"; const rootReducer = combineReducers({ background, }); export type RootReducer = ReturnType<typeof rootReducer>; export default rootReducer;