// REQ-USR-004: 类型化 Redux hooks(FE 共享骨架) import { useDispatch, useSelector, type TypedUseSelectorHook } from 'react-redux'; import type { RootState, AppDispatch } from './store'; export const useAppDispatch: () => AppDispatch = useDispatch; export const useAppSelector: TypedUseSelectorHook = useSelector;