useAppSelector: export type

This commit is contained in:
Alex Gleason
2024-02-12 17:57:28 -06:00
parent a9d311028e
commit 15af206a45

View File

@ -1,5 +1,5 @@
import { TypedUseSelectorHook, useSelector } from 'react-redux';
import { RootState } from 'soapbox/store';
import type { RootState } from 'soapbox/store';
export const useAppSelector: TypedUseSelectorHook<RootState> = useSelector;