Files
ncd-fe/packages/pl-fe/src/hooks/use-instance.ts
2024-12-03 15:20:51 +01:00

7 lines
197 B
TypeScript

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