분석레포트 화면 추가
This commit is contained in:
@@ -120,6 +120,7 @@ const StrategyPage = lazy(() => import('./components/StrategyPage'));
|
||||
const StrategyEditorPage = lazy(() => import('./components/StrategyEditorPage'));
|
||||
const TradeNotificationListPage = lazy(() => import('./components/TradeNotificationListPage'));
|
||||
const BacktestHistoryPage = lazy(() => import('./components/BacktestHistoryPage').then(m => ({ default: m.BacktestHistoryPage })));
|
||||
const AnalysisReportPage = lazy(() => import('./components/analysisReport/AnalysisReportPage').then(m => ({ default: m.AnalysisReportPage })));
|
||||
const SettingsPage = lazy(() => import('./components/SettingsPage'));
|
||||
const PaperTradingPage = lazy(() => import('./components/PaperTradingPage'));
|
||||
const VirtualTradingPage = lazy(() => import('./components/VirtualTradingPage'));
|
||||
@@ -2004,6 +2005,16 @@ function App() {
|
||||
: <FormalLoginGate onLogin={requireFormalLogin} />
|
||||
)}
|
||||
|
||||
{menuPage === 'analysis-report' && (
|
||||
formalLogin
|
||||
? (
|
||||
<Suspense fallback={<PageLoadFallback />}>
|
||||
<AnalysisReportPage theme={theme} />
|
||||
</Suspense>
|
||||
)
|
||||
: <FormalLoginGate onLogin={requireFormalLogin} />
|
||||
)}
|
||||
|
||||
{menuPage === 'paper' && (
|
||||
formalLogin ? (
|
||||
<Suspense fallback={<PageLoadFallback />}>
|
||||
|
||||
Reference in New Issue
Block a user