17 lines
314 B
React
17 lines
314 B
React
|
|
import "./index.css";
|
||
|
|
|
||
|
|
const AgentPage = () => {
|
||
|
|
return (
|
||
|
|
<div className="agent-page-wrapper">
|
||
|
|
<iframe
|
||
|
|
src="http://127.0.0.1:4173/"
|
||
|
|
className="agent-page-iframe"
|
||
|
|
title="Agent"
|
||
|
|
frameBorder="0"
|
||
|
|
allowFullScreen
|
||
|
|
/>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
export default AgentPage;
|