tsedio / tsed-formio

Repository dedicated to formiojs.
https://formio.tsed.io
14 stars 8 forks source link

Feat add classnames cell #135

Closed Romakita closed 1 month ago

Romakita commented 1 month ago

Allow adding custom className for column configuration on the Table component:

<Table columns= {[
    {
      Header: "Status",
      accessor: "status",
      Filter: SelectColumnFilter,
      Cell: CellStatus,
      className: "text-center" // added property
      style: {} // added property
    },
])