6 lines
188 B
TypeScript
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);
|
|
};
|