| 3 | import React, { useEffect, useRef, memo } from 'react' |
| 4 | |
| 5 | interface TradingViewWidgetProps { |
| 6 | symbol: string |
| 7 | theme?: 'light' | 'dark' |
| 8 | } |
| 9 | |
| 10 | function TradingViewWidget({ symbol, theme = 'light' }: TradingViewWidgetProps) { |
| 11 | const containerRef = useRef<HTMLDivElement>(null) |
nothing calls this directly
no outgoing calls
no test coverage detected