initial commit

This commit is contained in:
2026-08-05 21:35:45 +05:30
commit dbac720ce0
30 changed files with 19832 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
import React from "react";
function ChartPage({ symbol }) {
const tvSymbol = symbol || "NSE:RELIANCE";
const url = `https://www.tradingview.com/chart/?symbol=${tvSymbol}`;
return (
<div style={{ width: "100%", height: "600px", marginTop: "20px" }}>
<iframe
title="TradingView Chart"
src={url}
width="100%"
height="100%"
frameBorder="0"
></iframe>
</div>
);
}
export default ChartPage;