import React from 'react'; import { View, Text } from 'react-native'; import { YoutubePlayer } from '../../lib'; import PostContent from '../components/PostContent'; export type BasicProps = {}; const BasicExample = ({}: BasicProps) => ( ( This is a video title. )} /> ); export default BasicExample;