mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-05-07 11:57:57 +00:00
16 lines
427 B
TypeScript
16 lines
427 B
TypeScript
// Copyright 2017-2026 @pezkuwi/react-hooks authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import type { ApiProps } from '@pezkuwi/react-api/types';
|
|
|
|
import { useContext } from 'react';
|
|
|
|
import { ApiCtx } from './ctx/Api.js';
|
|
import { createNamedHook } from './createNamedHook.js';
|
|
|
|
function useApiImpl (): ApiProps {
|
|
return useContext(ApiCtx);
|
|
}
|
|
|
|
export const useApi = createNamedHook('useApi', useApiImpl);
|