UNPKG

@asyncapi/react-component

Version:

A React component for AsyncAPI specification.

6 lines 214 B
import React, { useContext } from 'react'; export var SpecificationContext = React.createContext(null); export function useSpec() { return useContext(SpecificationContext); } //# sourceMappingURL=useSpec.js.map