mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-06-22 05:40:28 +01:00
Push to remote repo
This commit is contained in:
11
modules/vlc-player/src/VlcPlayerView.tsx
Normal file
11
modules/vlc-player/src/VlcPlayerView.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
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} />;
|
||||
}
|
||||
Reference in New Issue
Block a user