mirror of
https://git.unlock-music.dev/um/um-react.git
synced 2025-07-03 02:32:12 +08:00
7 lines
307 B
TypeScript
7 lines
307 B
TypeScript
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;
|