react-code-dataset / recharts /src /context /legendPortalContext.tsx
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
219 Bytes
import { createContext, useContext } from 'react';
export const LegendPortalContext = createContext<HTMLElement | null>(null);
export const useLegendPortal = (): HTMLElement | null => useContext(LegendPortalContext);