| 25 | import { useRenderChart } from './hooks'; |
| 26 | |
| 27 | interface ChartProps { |
| 28 | editor; |
| 29 | previewElement: HTMLElement; |
| 30 | } |
| 31 | |
| 32 | const Chart: FC<ChartProps> = ({ editor, previewElement }) => { |
| 33 | useRenderChart(previewElement); |
nothing calls this directly
no outgoing calls
no test coverage detected