test-chat-plugin
v1.0.1
Published
Made with create-react-library
Downloads
7
Readme
test-chat-plugin
Made with create-react-library
Install
npm install --save test-chat-plugin
Usage
import React, { Component } from 'react'
import { ChatBlock } from 'test-chat-plugin'
class Example extends Component {
render() {
const handlesend = (message) => {
console.log(message);
return {text: "AI generated message", sender: "AI", timestamp: new Date()};
}
return <ChatBlock
theme={"dark"}
chatTitle={"Title"}
handleSend={handlesend}
/>
}
}
License
MIT © sleepytmzd