pleroma/app/soapbox/hooks/useInstance.ts
2023-09-16 05:47:11 -05:00

6 lines
191 B
TypeScript

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