// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. // See LICENSE.txt for license information. import React, {PureComponent} from 'react'; import {StyleSheet, View} from 'react-native'; import PropTypes from 'prop-types'; import Markdown from 'app/components/markdown'; import CustomPropTypes from 'app/constants/custom_prop_types'; export default class AttachmentPreText extends PureComponent { static propTypes = { baseTextStyle: CustomPropTypes.Style.isRequired, blockStyles: PropTypes.object.isRequired, metadata: PropTypes.object, onPermalinkPress: PropTypes.func, textStyles: PropTypes.object.isRequired, value: PropTypes.string, }; render() { const { baseTextStyle, blockStyles, metadata, onPermalinkPress, value, textStyles, } = this.props; if (!value) { return null; } return ( ); } } const style = StyleSheet.create({ container: { marginTop: 5, }, });