UNPKG

@thiendangit1102/rn-typescript-graphql

Version:
10 lines (6 loc) 216 B
import {combineReducers} from '@reduxjs/toolkit'; import {appReducer} from './app_reducer'; export const allReducer = combineReducers({ app: appReducer, }); export type RootState = ReturnType<typeof allReducer>