Files
streamyfin/modules/vlc-player/src/VlcPlayerView.tsx
2024-10-10 23:40:01 +11:00

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