This repository has been archived on 2023-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
react-rest-request/src/client_hook.ts

8 lines
163 B
TypeScript
Raw Normal View History

2021-05-16 17:28:51 +03:00
import { useRequestContext } from './request_context';
export function useClient() {
const { client } = useRequestContext();
2021-06-24 21:59:15 +03:00
return [client] as const;
}