Live Chat Page
This page provides a full functionalities of live chat
This page offers full functionalities live chat by integrating 3 components; Header, Message List & Compose Bar. It enables users to create and interact with real time messages.

Features
Feature
Description
Live Chat functionalities
A page with full live chat functionalities
Customization
Config ID
Config Key
Type
Description
live_chat/*/*
theme
Page
You can customize page theme
For more details on customization, please refer to the Customization page.
Usage
import React from 'react';
import { AmityLiveChatPage } from '@amityco/ui-kit';
interface SampleLiveChatPageProps {
channelId: Amity.Channel['channelId']
}
const SampleLiveChatPage = ({ channelId }: SampleLiveChatPageProps) => {
// Passing channelId to the component
return <AmityLiveChatPage channelId={channelId} />
}
export default SampleLiveChatPage;
Last updated
Was this helpful?