Files
delta-force-guide-web/src/store/hooks.ts
T

7 lines
243 B
TypeScript
Raw Normal View History

import { useDispatch, useSelector } from "react-redux"
import type { AppDispatch, RootState } from "./index"
export const useAppDispatch = useDispatch.withTypes<AppDispatch>()
export const useAppSelector = useSelector.withTypes<RootState>()