pleroma/app/soapbox/hooks/useInstance.ts

7 lines
191 B
TypeScript
Raw Normal View History

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