import { useDispatch, useSelector, useStore } from 'react-redux' import { AppDispatch, AppState, AppStore } 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()