mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-04-22 07:48:00 +00:00
16 lines
479 B
TypeScript
16 lines
479 B
TypeScript
// Copyright 2017-2026 @pezkuwi/react-hooks authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import type { BlockEvents } from './ctx/types.js';
|
|
|
|
import { useContext } from 'react';
|
|
|
|
import { BlockEventsCtx } from './ctx/BlockEvents.js';
|
|
import { createNamedHook } from './createNamedHook.js';
|
|
|
|
function useBlockEventsImpl (): BlockEvents {
|
|
return useContext(BlockEventsCtx);
|
|
}
|
|
|
|
export const useBlockEvents = createNamedHook('useBlockEvents', useBlockEventsImpl);
|