// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: MIT-0 import React from 'react'; const getReactionEmoji = (sentiment) => { if (sentiment === 'POSITIVE') { return <>😄; } if (sentiment === 'NEGATIVE') { return <>😔; } }; export default getReactionEmoji;