rename folder for nextjs 13

This commit is contained in:
Lucid Kobold
2022-11-18 15:23:03 -05:00
parent 878d007237
commit 62f204f40c
2 changed files with 0 additions and 0 deletions

5
src/redux/hooks.ts Normal file
View File

@@ -0,0 +1,5 @@
import { TypedUseSelectorHook, useDispatch, useSelector } from "react-redux";
import { RootState, AppDispatch } from "./store";
export const useAppDispatch = () => useDispatch<AppDispatch>();
export const useAppSelector: TypedUseSelectorHook<RootState> = useSelector;