import { Chatbox } from '@talkjs/react-components';
import '@talkjs/react-components/base.css';
import './comments-theme/index.css';
import { Message, MessageListFooter } from './comments-theme';
function Comments(props) {
return (
<Chatbox
appId={props.appId}
theme={{ Message, MessageListFooter }}
userId={props.userId}
conversationId={props.id}
/>
);
}




The power of TalkJS is its high customisability and ease of use. We can offer our customers a plug-and-play solution while giving them the flexibility to adjust the chat widget to their needs.