Files
streamyfin/modules/mpv-player/src/MpvPlayerView.web.tsx
Alex Kim 36655bba43 init
2025-12-06 02:02:26 +11:00

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>
);
}