// Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: MIT-0 import React from 'react'; import { RosterAttendee, useAttendeeStatus, } from 'amazon-chime-sdk-component-library-react'; import VideoStreamMetrics from '../containers/VideoStreamMetrics'; interface Props { /** The Chime attendee ID */ attendeeId: string; } const RosterAttendeeWrapper: React.FC = ({ attendeeId }) => { const { videoEnabled } = useAttendeeStatus(attendeeId); return ( : null } /> ); }; export default RosterAttendeeWrapper;