import React, { useMemo } from 'react' import { View, StyleSheet } from 'react-native' import { Text } from 'react-native-gesture-handler' import { Color } from './Color' const styles = StyleSheet.create({ container: { padding: 10, }, text: { color: Color.alizarin, fontWeight: '600', }, }) export function MessageVideo () { const content = useMemo(() => ( {'Video is not implemented by GiftedChat.'} {'\nYou need to provide your own implementation by using renderMessageVideo prop.'} ), []) return content }