8429db504a
- New /stocks route with StockViewer component - New /api/indicators endpoint with SMA, EMA, RSI, MACD - New /api/alpaca/account endpoint - AlpacaAccountInfo component on home page - Indicator calculation utilities - Tests for utilities and components - Vite proxy config for /api
7 lines
169 B
TypeScript
7 lines
169 B
TypeScript
import { type RouteConfig, index } from "@react-router/dev/routes";
|
|
|
|
export default [
|
|
index("routes/home.tsx"),
|
|
index("routes/stocks.tsx"),
|
|
] satisfies RouteConfig;
|