mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
7 lines
343 B
TypeScript
7 lines
343 B
TypeScript
import { TypedUseSelectorHook, useDispatch, useSelector } from 'react-redux';
|
|
import { AppDispatch, RootState } from './store';
|
|
|
|
// Use throughout your app instead of plain `useDispatch` and `useSelector`
|
|
export const useAppDispatch: () => AppDispatch = useDispatch;
|
|
export const useAppSelector: TypedUseSelectorHook<RootState> = useSelector;
|