StreamingUrlDisplay shows the streaming URL with a copy button.
Component props
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!')} /> );} Copy
import { StreamingUrlDisplay } from '@hiyve/react-capture';function StreamingPanel({ streamingUrl }) { return ( <StreamingUrlDisplay url={streamingUrl} onCopy={() => console.log('URL copied!')} /> );}
StreamingUrlDisplay shows the streaming URL with a copy button.