UNPKG

@qte/react-native-gifted-chat

Version:

Performant fork of react-native-gifted-chat with FlashList support

14 lines 535 B
import React from 'react'; import Color from './Color'; import { View, Text } from 'react-native'; export function MessageVideo() { return (<View style={{ padding: 20 }}> <Text style={{ color: Color.alizarin, fontWeight: '600' }}> {'Video is not implemented by GiftedChat.'} </Text> <Text style={{ color: Color.alizarin, fontWeight: '600' }}> {'\nYou need to provide your own implementation by using renderMessageVideo prop.'} </Text> </View>); } //# sourceMappingURL=MessageVideo.js.map