e33898ec2e
- PdfViewerPage, TradingChartPage, TradingReportsPage, TradingToolsPage - TaskHistoryPage, HpSubmissionsPage, ProjectsPanelPage - ResumeUploadPage, SystemStatusPage
21 lines
556 B
TypeScript
21 lines
556 B
TypeScript
"use client";
|
|
|
|
import BackToMC from "@/components/mission-control/BackToMC";
|
|
|
|
export default function TradingToolsPage() {
|
|
return (
|
|
<>
|
|
<BackToMC />
|
|
<div className="p-6">
|
|
<div className="mb-6">
|
|
<h1 className="text-3xl font-bold text-white mb-2">Trading-tools</h1>
|
|
<p className="text-slate-400">trading-tools panel</p>
|
|
</div>
|
|
<div className="bg-slate-800 rounded-lg p-8 text-center">
|
|
<p className="text-slate-400">trading-tools loading...</p>
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|