um-react/src/hooks.ts

7 lines
307 B
TypeScript
Raw Normal View History

2023-05-07 22:29:37 +00:00
import { useDispatch, useSelector } from 'react-redux';
import type { TypedUseSelectorHook } from 'react-redux';
import type { RootState, AppDispatch } from './store';
export const useAppDispatch: () => AppDispatch = useDispatch;
export const useAppSelector: TypedUseSelectorHook<RootState> = useSelector;