import { useContext } from 'react'; import { ChartContext } from '../context'; /** * Get the `lightweight-charts` chart api object and the container `
` referrence. * * ❗Only use inside ``. * * @returns object.chart: `IChartApi` * @returns object.containerRef: `React.Ref` */ export function useChart() { return useContext(ChartContext); }