Files
workavia-calendar-front/src/app/hooks.ts
T
2026-01-20 17:33:30 +01:00

6 lines
246 B
TypeScript

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