Replies: 1 comment
|
You can absolutely display on different lines in a given cell. {
accessor: 'name',
render: ({ firstName, lastName }) => (
<>
{firstName}
<br />
{lastName}
</>
),
},
// ... |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Is there any way to display multiple values in a given cell on different lines? I have tried a few approaches such as inserting "<br/>" and '/n' between them.
I am looking to display something in a given row for a given column
Task A
Task B
Task C.
What I seem to get is:
Task A Task B Task C.
All reactions