5 lines
153 B
TypeScript
5 lines
153 B
TypeScript
|
import { useDispatch } from 'react-redux';
|
||
|
|
||
|
import { AppDispatch } from 'soapbox/store';
|
||
|
|
||
|
export const useAppDispatch = () => useDispatch<AppDispatch>();
|