first commit
This commit is contained in:
8
lib/hooks.ts
Normal file
8
lib/hooks.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
import { useDispatch, useSelector, useStore } from "react-redux";
|
||||
import type { TypedUseSelectorHook } from "react-redux";
|
||||
import type { AppDispatch, AppStore, RootState } from "./store";
|
||||
|
||||
// Use throughout your app instead of plain `useDispatch` and `useSelector`
|
||||
export const useAppDispatch: () => AppDispatch = useDispatch;
|
||||
export const useAppSelector: TypedUseSelectorHook<RootState> = useSelector;
|
||||
export const useAppStore: () => AppStore = useStore;
|
||||
Reference in New Issue
Block a user