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