我想从我的用户信息页面制作一个 pdf。我使用 react-pdf,但我没有在 react-pdf 网页中找到有关使用我的文档变量中的道具的信息。是否可以使用它或者我怎么能不使用任何道具?
const MyDoc = () => (
<Document>
<Page size="A4" style={styles.page}>
<View style={styles.section}>
<Header as="h5" dividing color="teal" content="User Info" />
Please contact with your manager
<Table id="pdf">
<Table.Body>
<Table.Row>
<Table.Cell><Header as='h4'>Name</Header></Table.Cell>
<Table.Cell>{this.props.user.profile.name == null || this.props.user.profile.surname == null ? "-" : this.props.user.profile.name + " " + this.props.user.profile.surname}</Table.Cell>
</Table.Row> .....