blob: 7988133712f34103c013798350cae1178c86c23a (
plain)
1
2
3
4
5
|
import { useDispatch, useSelector } from 'react-redux';
import type { AppDispatch, RootState } from './store';
export const useAppDispatch = useDispatch.withTypes<AppDispatch>();
export const useAppSelector = useSelector.withTypes<RootState>();
|