13 lines
738 B
Plaintext
Executable File
13 lines
738 B
Plaintext
Executable File
The file /home/project/src/routes/stock.$code.tsx has been updated. Made 1 replacement.
|
|
|
|
Here's the result of running `cat -n` on a snippet of the edited file:
|
|
64→ const [stockInfo, setStockInfo] = useState<StockInfo | null>(null);
|
|
65→ const [chartData, setChartData] = useState<StockData[]>([]);
|
|
66→ const [fundFlowData, setFundFlowData] = useState<FundFlowData[]>([]);
|
|
67→ const [fundFlowSummary, setFundFlowSummary] = useState<FundFlowSummary | null>(null);
|
|
68→ const [dailyTableDays, setDailyTableDays] = useState<number>(7);
|
|
69→ const [loading, setLoading] = useState(true);
|
|
70→ const [error, setError] = useState<string | null>(null);
|
|
71→
|
|
72→ useEffect(() => {
|
|
73→ loadStockData(); |