Files
streamyfin/modules/mpv-player/src/MpvPlayerView.web.tsx
2026-01-10 19:35:27 +01:00

16 lines
362 B
TypeScript

import { MpvPlayerViewProps } from "./MpvPlayer.types";
export default function MpvPlayerView(props: MpvPlayerViewProps) {
const url = props.source?.url ?? "";
return (
<div>
<iframe
title='MPV Player'
style={{ flex: 1 }}
src={url}
onLoad={() => props.onLoad?.({ nativeEvent: { url } })}
/>
</div>
);
}