7 lines
197 B
TypeScript
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 };
|