verdnatura-chat/app/lib/hooks/useAppSelector.ts

6 lines
206 B
TypeScript
Raw Normal View History

2022-05-30 22:02:08 +00:00
import { TypedUseSelectorHook, useSelector } from 'react-redux';
import { IApplicationState } from '../../definitions';
export const useAppSelector: TypedUseSelectorHook<IApplicationState> = useSelector;