Live Chat Page
This page provides a full functionalities of live chat
Last updated
Was this helpful?
Was this helpful?
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;