soapbox/app/soapbox/hooks/useAppDispatch.ts

5 wiersze
158 B
TypeScript

import { useDispatch } from 'react-redux';
import type { AppDispatch } from 'soapbox/store';
export const useAppDispatch = () => useDispatch<AppDispatch>();