All pages
Powered by GitBook
1 of 1

Loading...

Reaction List Component

This component enable uses to view reactions and the users who reacted on messages.

Users can react (add or remove reactions) to the message and can also view the list of users who reacted to the message along with their reaction.

Features:

Feature
Description

Customization

Config ID
Config Key
Type
Description

Usage:

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;