I want to insert a select drop down inside material ui table as part of row. Can you please share a reference as to how to perform this using React.
In material able you have a special feature "lookup".
Please refer to the following code:
const columns = [ { title: "Name", field: "Name", value:Name, lookup: { 1:"John" 2:"Jessica" } }, ]
const columns = [ { title: "Name", field: "Name", lookup: { 1:"John" 2:"Jessica" } ]