From 56ad0593ad304be2b10f18feeda88c2a8a3584da Mon Sep 17 00:00:00 2001 From: Henry Winkel Date: Sat, 16 May 2026 12:47:44 +0200 Subject: [PATCH] feat: replace StockViewer with MostActiveStocks on stocks page --- app/routes/stocks.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/routes/stocks.tsx b/app/routes/stocks.tsx index 85391a9..703df1a 100644 --- a/app/routes/stocks.tsx +++ b/app/routes/stocks.tsx @@ -1,4 +1,4 @@ -import StockViewer from "../components/StockViewer"; +import MostActiveStocks from "../components/MostActiveStocks"; import Navbar from "../components/Navbar"; export default function Stocks() { @@ -9,15 +9,15 @@ export default function Stocks() {

- Stock Indicators + Most Active Stocks

- Analyze technical indicators for any stock symbol. + Real-time view of the most actively traded stocks, auto-refreshing every 30 seconds.

- +
); -} \ No newline at end of file +}