/* * Copyright 2020-2021 AskChristee, LLC. All rights reserved. */ import React from 'react'; import { View, StyleSheet, Text } from '@react-pdf/renderer'; import { THecmANotes } from '../../../../types/api'; const styles = StyleSheet.create({ tableContainer: { flexDirection: 'row', flexWrap: 'wrap', marginTop: 15, }, row: { flexDirection: 'row', height: 16, }, description: { textAlign: 'left', width: '100%', fontSize: 9, }, }); interface Props { bNotes: THecmANotes; } const HecmMessageReportCash: React.FC = ({ bNotes }) => { return ( {bNotes && {bNotes.pdfmess}} {bNotes &&  } {bNotes && ( {bNotes.pdfmess1} {bNotes.pdfmess2} )} {bNotes && ( {bNotes.pdfmess3} {bNotes.pdfmess4} )} {bNotes && ( {bNotes.pdfmess5} {bNotes.pdfmess6} )} {bNotes && ( {bNotes.pdfmess7} {bNotes.pdfmess8} )} {bNotes && ( {bNotes.pdfmess9} {bNotes.pdfmess10} )} {bNotes && ( {bNotes.pdfmess11} {bNotes.pdfmess12} )} {bNotes && {bNotes.pdfmess13}} ); }; export default HecmMessageReportCash;