Files
agent-chat-ui/agent/uis/stockbroker/portfolio-view/index.tsx
2025-03-03 16:51:46 -08:00

10 lines
209 B
TypeScript

import "./index.css";
export default function PortfolioView() {
return (
<div className="flex flex-col gap-2 border border-solid border-slate-500 p-4 rounded-md">
Portfolio View
</div>
);
}