mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-02-03 19:22:32 +00:00
15 lines
338 B
TypeScript
15 lines
338 B
TypeScript
import { MpvPlayerViewProps } from "./MpvPlayer.types";
|
|
|
|
export default function MpvPlayerView(props: MpvPlayerViewProps) {
|
|
return (
|
|
<div>
|
|
<iframe
|
|
title='MPV Player'
|
|
style={{ flex: 1 }}
|
|
src={props.url}
|
|
onLoad={() => props.onLoad({ nativeEvent: { url: props.url } })}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|