UNPKG

@s1am0nd/asyncapi-react-component

Version:

A React component for AsyncAPI specification.

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