react-dj-table

git icon
Change theme

Label Columns

LABELSCustomisationColumns

Use label colums to individually control the column titles, if you need to change case on all your colums use css text-transform

Label Column options #

   const options = {
labelCols: [{ last_name: "LastName" }, { gender: "Gender" }]

};
  <Table json={json} options={options} />

k