mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-19 19:31:54 +03:00
6 lines
357 B
TypeScript
6 lines
357 B
TypeScript
import { TypedUseSelectorHook, useDispatch, useSelector } from 'react-redux'
|
|
import type { RootState, AppDispatch } from './redux/store/store'
|
|
|
|
// Use throughout your app instead of plain `useDispatch` and `useSelector`
|
|
export const useAppDispatch = () => useDispatch<AppDispatch>()
|
|
export const useAppSelector: TypedUseSelectorHook<RootState> = useSelector |