// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: MIT-0 import React, { useState } from 'react'; import PropTypes from 'prop-types'; import { STICKERS } from '../../constants'; const StickerPicker = ({ handleStickerSend }) => { const [showStickers, setShowStickers] = useState(false); return ( <>
{STICKERS.map((sticker) => { return ( ); })}
); }; StickerPicker.propTypes = { handleStickerSend: PropTypes.func, }; export default StickerPicker;