finished initial symbols pages

This commit is contained in:
Boki 2025-07-02 20:53:26 -04:00
parent 62706cdb42
commit 4e4a048988
13 changed files with 688 additions and 107 deletions

View file

@ -4,7 +4,7 @@ import { ExchangesPage } from '@/features/exchanges';
import { MonitoringPage } from '@/features/monitoring';
import { PipelinePage } from '@/features/pipeline';
import { BacktestPage } from '@/features/backtest';
import { ChartPage } from '@/features/charts';
import { SymbolsPage, SymbolDetailPage } from '@/features/symbols';
import { BrowserRouter, Navigate, Route, Routes } from 'react-router-dom';
export function App() {
@ -14,7 +14,10 @@ export function App() {
<Route path="/" element={<Layout />}>
<Route index element={<Navigate to="/dashboard" replace />} />
<Route path="dashboard" element={<DashboardPage />} />
<Route path="charts" element={<ChartPage />} />
<Route path="symbols">
<Route index element={<SymbolsPage />} />
<Route path=":symbol" element={<SymbolDetailPage />} />
</Route>
<Route path="exchanges" element={<ExchangesPage />} />
<Route
path="portfolio"