import { useConstant } from "./use-constant.hook"; import { Service } from "shared/models/service.interface"; export function useService(s: Service): T { const service = useConstant(() => s.getInstance()); return service; }