pleroma/src/hooks/useAppDispatch.ts
2023-09-18 16:08:54 -05:00

5 lines
No EOL
158 B
TypeScript

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