UNPKG

react-native-unit-components

Version:

Unit React Native components

15 lines (12 loc) 386 B
import { configureStore } from '@reduxjs/toolkit'; import wallet from '../slices/pushProvisioningSlice'; import configuration from '../slices/ConfigurationSlice'; import bottomSheet from '../slices/BottomSheetSlice'; export const store = configureStore({ reducer: { wallet, configuration, bottomSheet, }, }); export type RootState = ReturnType<typeof store.getState>;