Hello,
I would like to pass multiple props to the text attribute. Is it possible, and how to achieve it?
Example:
I want to pass data.page9.hypersensibility and data.page9.valueOfHypersensibility and separate them with a colon (:) as props to the text attribute below.
<ReactPdfTable.TableRow>
<ReactPdfTable.TableCell text={t("result.row2_header")} align="center" />
<ReactPdfTable.TableCell text={data.page9.hypersensibility: data.page9.valueOfHypersensibility} align="center" />
<ReactPdfTable.TableCell text="hello" align="center" />
</ReactPdfTable.TableRow>
Hello,
I would like to pass multiple props to the text attribute. Is it possible, and how to achieve it?
Example:
I want to pass data.page9.hypersensibility and data.page9.valueOfHypersensibility and separate them with a colon (:) as props to the text attribute below.
<ReactPdfTable.TableRow>
<ReactPdfTable.TableCell text={t("result.row2_header")} align="center" />
<ReactPdfTable.TableCell text={data.page9.hypersensibility: data.page9.valueOfHypersensibility} align="center" />
<ReactPdfTable.TableCell text="hello" align="center" />
</ReactPdfTable.TableRow>