import { FC } from 'react'; import { Container } from 'components/layout'; import { ResizeMode, Video } from 'expo-av'; import { useSafeAreaInsets } from 'react-native-safe-area-context'; export const Floating: FC = () => { const { bottom } = useSafeAreaInsets(); const marginBottom = bottom + 70; return ( ); }; type ParticipantType = { id: string; uri: string; username: string; }; interface ParticipantsProps { participant: ParticipantType; }