This component enable uses to view reactions and the users who reacted on messages.
Reaction List
Users can view the list of user who reacted on the message.
live_chat/message_list/*
theme
Component
You can customize component theme

import { AmityReactionList } from '@amityco/ui-kit';
import React from 'react';
interface SampleAmityReactionListProps {
referenceId: string;
referenceType: Amity.ReactableType;
}
const SampleAmityReactionList = ({ referenceId, referenceType }: SampleAmityReactionListProps) => {
return <AmityReactionList referenceId={referenceId} referenceType={referenceType} />;
};
export default SampleAmityReactionList;