import React from 'react'; import {Image, Text, View} from 'react-native'; import {styles} from './styles'; interface ErrorProps { error: boolean; } export const Error = ({error}: ErrorProps) => { if (error) { return ( Video unavailable ); } return null; };