@textql/client
v2.0.0-beta
Published
Embedded client for white-labelled TextQL applications
Downloads
214
Readme
TextQL: Embedded Client
Usage in React
npm i --save @textql/client
import React from "react";
import "@textql/client";
function App() {
return (
<div className="App">
<tql-chat-wrapper
connector-id="79"
proxy-url="http://localhost:5173"
member-id="member-test-fa604a14-7702-4798-a254-8375ab084789"
auth-token="8ff6d7cb-96db-4d3a-b3cd-901b46fc0811"
chat-id="" /* optional; if you want to display an existing chat */
></tql-chat-wrapper>
</div>
);
}