39975-vm/src/app/hooks.ts
2026-05-12 19:20:15 +00:00

7 lines
247 B
TypeScript

import { useDispatch, useSelector } from 'react-redux';
import type { AppDispatch, RootState } from './store';
export const useAppDispatch = useDispatch.withTypes<AppDispatch>();
export const useAppSelector = useSelector.withTypes<RootState>();