diff --git a/src/components/VideoPlayer.tsx b/src/components/VideoPlayer.tsx new file mode 100644 index 0000000..2a5bc5b --- /dev/null +++ b/src/components/VideoPlayer.tsx @@ -0,0 +1,21 @@ +import Video from 'react-native-video'; + +export const VideoPlayer = ({ + videoURI, + isPaused = true, +}: { + videoURI: string; + isPaused?: boolean; +}) => { + return ( +