UNPKG

react-plot

Version:

Library of React components to render SVG 2D plots.

10 lines 311 B
import { createContext, useContext } from 'react'; export const legendContext = createContext(null); export function useLegend() { const ctx = useContext(legendContext); if (!ctx) { throw new Error('context was not initialized'); } return ctx; } //# sourceMappingURL=legendContext.js.map