Created
June 22, 2022 08:21
-
-
Save safronman/a93692e18798750fff27c0a618ad9b3c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { TypedUseSelectorHook, useDispatch, useSelector } from 'react-redux' | |
| import { AppDispatch, RootState } from '../../app/store' | |
| export const useAppDispatch: () => AppDispatch = useDispatch | |
| export const useAppSelector: TypedUseSelectorHook<RootState> = useSelector |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment