0

I have used @david.kucsai/react-pdf-table. here is the css code how i implemented.

export const TableCellBodyStyle = {
  padding: 5,
  textAlign: "left",
  wordWrap: `break-word`,
  fontSize: 8,
};

its works but i donot have full control on table.

Anuj Shakya
  • 73
  • 1
  • 9

1 Answers1

0

This problem is fixed when I used

 const styles= StyleSheet.create({
TableCellBodyStyle : {
  padding: 5,
  textAlign: "left",
  fontSize: 8,
};
})
Anuj Shakya
  • 73
  • 1
  • 9