bigbuffet-rw/app/soapbox/hooks/useInstance.ts
2022-11-26 10:43:46 -06:00

6 lines
188 B
TypeScript

import { useAppSelector } from 'soapbox/hooks';
/** Get the Instance for the current backend. */
export const useInstance = () => {
return useAppSelector((state) => state.instance);
};