Replies: 2 comments 6 replies
-
I was thinking of proposing dropping |
Beta Was this translation helpful? Give feedback.
5 replies
-
It would be nice to be able to provide arbitrary column definitions that aren't directly related to the data structure. {
"firstName": "Foo",
"lastName": "Bar",
} const columns = [{
name: "fullName",
label: "Full Name",
render(_, { firstName, lastName }) {
return `${firstName} ${lastName}`;
}
}] I think this could resolve the Action Columns request as well (#24) |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
This discussion serves to start a conversation around what would be most useful to add to this library for larger adoption. I don't want to just recreate React Table with Typescript support, but perhaps there are some other use cases that are sorely needed and would be easy to add? I also don't want to sacrifice the simplicity and small size of the library.
Beta Was this translation helpful? Give feedback.
All reactions