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