mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-09-07 21:15:42 +00:00
7 lines
273 B
TypeScript
7 lines
273 B
TypeScript
import { useDispatch, useSelector } from 'react-redux';
|
|
import type { RootState, AppDispatch } from './index';
|
|
|
|
export const useAppDispatch = () => useDispatch<AppDispatch>();
|
|
export const useAppSelector = <T>(selector: (state: RootState) => T) =>
|
|
useSelector(selector);
|