UNPKG

react-native-twopane-navigation

Version:

React Native package for dual screen devices navigation support (Surface Duo)

7 lines (6 loc) 304 B
import { rootReducerType } from "../../appStore"; import { useSelector } from "react-redux"; import { IUtilityStoreState } from "./utilityStore.interfaces"; export const getUtilityStore = (): IUtilityStoreState => { return useSelector((state: rootReducerType) => state.utilityStoreReducer); };