bigbuffet-rw/app/soapbox/hooks/useInstance.ts

7 lines
188 B
TypeScript
Raw Normal View History

2022-11-26 08:38:16 -08:00
import { useAppSelector } from 'soapbox/hooks';
/** Get the Instance for the current backend. */
export const useInstance = () => {
return useAppSelector((state) => state.instance);
};