UNPKG

@asyncapi/react-component

Version:

A React component for AsyncAPI specification.

6 lines 204 B
import { createContext, useContext } from 'react'; export var ConfigContext = createContext({}); export function useConfig() { return useContext(ConfigContext); } //# sourceMappingURL=useConfig.js.map