// Copyright 2020-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 import React from 'react'; import { useNotificationState, NotificationGroup } from 'amazon-chime-sdk-component-library-react'; const Notifications = () => { const { notifications } = useNotificationState(); return notifications.length ? : null; }; export default Notifications;