import { ChatWidget } from "./ChatWidget" export function ChatApp() { // Obter ticketId da URL const params = new URLSearchParams(window.location.search) const ticketId = params.get("ticketId") if (!ticketId) { return (

Erro: ticketId não fornecido

) } return } export { ChatWidget } export * from "./types"