8 lines
174 B
TypeScript
8 lines
174 B
TypeScript
import { useDispatch } from 'react-redux';
|
|
|
|
import type { AppDispatch } from '@/store';
|
|
|
|
const useAppDispatch = () => useDispatch<AppDispatch>();
|
|
|
|
export { useAppDispatch };
|