7 lines
322 B
TypeScript
7 lines
322 B
TypeScript
import { useDispatch, useSelector, useStore } from 'react-redux';
|
|
import type { AppDispatch, RootState } from '../redux/main';
|
|
|
|
export const useAppDispatch = useDispatch.withTypes<AppDispatch>();
|
|
export const useAppSelector = useSelector.withTypes<RootState>();
|
|
export const useAppStore = useStore.withTypes<RootState>();
|