blob: 3f650bd6b2e9e2ae1dd919d4ad592827741f45e5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
import "vidstack/styles/base.css";
import { MediaOutlet, MediaPlayer } from "@vidstack/react";
export default function StackPlayer() {
return (
<MediaPlayer src="https://media-files.vidstack.io/hls/index.m3u8" controls>
<MediaOutlet />
</MediaPlayer>
);
}
|