MCPcopy
hub / github.com/firecrawl/fireplexity / TradingViewWidgetProps

Interface TradingViewWidgetProps

components/trading-view-widget.tsx:5–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected