mirror of
https://github.com/streamyfin/streamyfin.git
synced 2025-08-20 18:37:18 +02:00
12 lines
359 B
TypeScript
12 lines
359 B
TypeScript
import { requireNativeViewManager } from "expo-modules-core";
|
|
import * as React from "react";
|
|
|
|
import { VlcPlayerViewProps } from "./VlcPlayer.types";
|
|
|
|
const NativeView: React.ComponentType<VlcPlayerViewProps> =
|
|
requireNativeViewManager("VlcPlayer");
|
|
|
|
export default function VlcPlayerView(props: VlcPlayerViewProps) {
|
|
return <NativeView {...props} />;
|
|
}
|