San3yuan | 4d0e803 | 2025-04-04 17:21:40 +0800 | [diff] [blame] | 1 | import { useDispatch, useSelector } from 'react-redux' |
2 | import type { RootState, AppDispatch } from '../store' | ||||
3 | |||||
4 | // Use throughout your app instead of plain `useDispatch` and `useSelector` | ||||
5 | export const useAppDispatch = useDispatch.withTypes<AppDispatch>() | ||||
6 | export const useAppSelector = useSelector.withTypes<RootState>() |