page.tsx 392 B

12345678910111213141516171819
  1. "use client";
  2. import { PageContainer } from "@ant-design/pro-components";
  3. export default function Druid() {
  4. return (
  5. <PageContainer title={false}>
  6. <div style={{ height: "100vh" }}>
  7. <iframe
  8. src="/api/druid/login.html"
  9. width="100%"
  10. height="100%"
  11. style={{border: "none"}}
  12. ></iframe>
  13. </div>
  14. </PageContainer>
  15. );
  16. }