// Copyright 2020-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 import React from 'react'; type Props = { enabled: boolean; attendeeName?: string; videoEleRef: (instance: HTMLVideoElement | null) => void; }; const RemoteVideo: React.FC = ({ videoEleRef, enabled }) => (