In their demo code, they have the following columns listed:
const columns = ["Person Name", "Age", "Company Name", "Country", "City"];
Yet, "Sort" & "Delete" columns get appended to the right. How to get rid of these to columns?
In their demo code, they have the following columns listed:
const columns = ["Person Name", "Age", "Company Name", "Country", "City"];
Yet, "Sort" & "Delete" columns get appended to the right. How to get rid of these to columns?
I got access to their source code. And they have the columns HARD CODED
<tr>
{columns && columns.map((th, i) => {
return <th key={i}>{th}</th>; })}
<th>Sort </th>
<th>Delete </th>
</tr>