mirror of
https://github.com/PlayEdu/backend
synced 2025-07-20 10:19:32 +08:00
8 lines
206 B
TypeScript
8 lines
206 B
TypeScript
import {
|
|
useSelector as useReduxSelector,
|
|
TypedUseSelectorHook,
|
|
} from "react-redux";
|
|
import { RootState } from "./store";
|
|
|
|
export const useSelector: TypedUseSelectorHook<RootState> = useReduxSelector;
|