Hiyve Components - v1.0.0
    Preparing search index...

    Function StreamingUrlDisplay

    • StreamingUrlDisplay shows the streaming URL with a copy button.

      Parameters

      Returns ReactElement

      The rendered StreamingUrlDisplay component

      This component displays the streaming playback URL and provides an easy way to copy it to the clipboard. It shows a "Copied!" indicator when the URL is successfully copied.

      Basic usage:

      import { StreamingUrlDisplay } from '@hiyve/react-capture';

      function StreamingPanel({ streamingUrl }) {
      return (
      <StreamingUrlDisplay
      url={streamingUrl}
      onCopy={() => console.log('URL copied!')}
      />
      );
      }