soapbox/app/soapbox/hooks/useInstance.ts

7 wiersze
191 B
TypeScript

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