UNPKG

hotel-ai-widget

Version:

A customizable hotel chat widget for React and vanilla HTML

7 lines (6 loc) 355 B
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import HotelChatWidget from "./components/hotel-ai-widget"; import { Toaster } from "react-hot-toast"; export default function App() { return (_jsxs("div", { className: "min-h-screen bg-gray-50 p-8", children: [_jsx(Toaster, { position: "top-right" }), _jsx(HotelChatWidget, {})] })); }