// This file serves as a central hub for re-exporting pre-typed Redux hooks. import { useDispatch, useSelector } from 'react-redux' import type { AppDispatch, RootState } from '@/store.ts' // Use throughout your app instead of plain `useDispatch` and `useSelector` export const useAppDispatch = useDispatch.withTypes() export const useAppSelector = useSelector.withTypes()