Reaction List Component
This component enable uses to view reactions and the users who reacted on messages.
Last updated
Was this helpful?
Was this helpful?
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;