Skip to content

Commit 2c940d0

Browse files
committed
Add CategoricalAnalysis
1 parent eaf61c2 commit 2c940d0

File tree

6 files changed

+868
-3
lines changed

6 files changed

+868
-3
lines changed

App.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { AccountData, PositionData } from "./types";
44
import SummaryCard from "./components/SummaryCard";
55
import PositionsTable from "./components/PositionsTable";
66
import PortfolioChart from "./components/PortfolioChart";
7+
import CategoricalAnalysis from "./components/CategoricalAnalysis";
78
import FileDropZone from "./components/FileDropZone";
89
import { LayoutDashboard, Trash2, Maximize2, Minimize2 } from "lucide-react";
910

@@ -214,9 +215,14 @@ const App: React.FC = () => {
214215
</section>
215216

216217
{/* Positions Table */}
217-
<section>
218+
<section className="mb-8">
218219
<PositionsTable positions={positions} />
219220
</section>
221+
222+
{/* Categorical Analysis */}
223+
<section>
224+
<CategoricalAnalysis positions={positions} />
225+
</section>
220226
</main>
221227
</div>
222228
);

0 commit comments

Comments
 (0)