mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-01-04 01:14:13 +08:00
7 lines
243 B
TypeScript
7 lines
243 B
TypeScript
import { useDispatch, useSelector } from 'react-redux'
|
|
|
|
import type { AppDispatch, RootState } from '@/store'
|
|
|
|
export const useAppDispatch = useDispatch.withTypes<AppDispatch>()
|
|
export const useAppSelector = useSelector.withTypes<RootState>()
|