2025-10-17 14:36:25 +08:00
|
|
|
import "./index.css";
|
|
|
|
|
|
|
|
|
|
const AgentPage = () => {
|
|
|
|
|
return (
|
|
|
|
|
<div className="agent-page-wrapper">
|
|
|
|
|
<iframe
|
2025-10-30 15:42:23 +08:00
|
|
|
src="http://127.0.0.1:4173/finance"
|
2025-10-17 14:36:25 +08:00
|
|
|
className="agent-page-iframe"
|
|
|
|
|
title="Agent"
|
|
|
|
|
frameBorder="0"
|
|
|
|
|
allowFullScreen
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default AgentPage;
|