mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
7 lines
316 B
TypeScript
7 lines
316 B
TypeScript
import { useDispatch, useSelector } from "react-redux";
|
|
import type { TypedUseSelectorHook } from "react-redux";
|
|
|
|
import type { AppDispatch, RootState } from "@renderer/store";
|
|
|
|
export const useAppDispatch: () => AppDispatch = useDispatch;
|
|
export const useAppSelector: TypedUseSelectorHook<RootState> = useSelector;
|