16 lines
406 B
JavaScript
16 lines
406 B
JavaScript
"use client";
|
|
|
|
import React from "react";
|
|
|
|
export default function WhatsAppAgentUI() {
|
|
return (
|
|
<div style={{ width: "100%", height: "calc(100vh - 100px)", border: "none", overflow: "hidden", borderRadius: "12px" }}>
|
|
<iframe
|
|
src="/proxy/whatsapp/"
|
|
style={{ width: "100%", height: "100%", border: "none" }}
|
|
title="WhatsApp Gateway Dashboard"
|
|
/>
|
|
</div>
|
|
);
|
|
}
|