6 lines
206 B
TypeScript
6 lines
206 B
TypeScript
|
import { TypedUseSelectorHook, useSelector } from 'react-redux';
|
||
|
|
||
|
import { IApplicationState } from '../../definitions';
|
||
|
|
||
|
export const useAppSelector: TypedUseSelectorHook<IApplicationState> = useSelector;
|