hasankzl / react-flexy-table

most easy to use react table
21 stars 9 forks source link

Change rows color #1

Closed liboniluciano closed 4 years ago

liboniluciano commented 4 years ago

Hello,

how can change styles row?

hasankzl commented 4 years ago

hi you can specify the className for the table like

<ReactFlexyTable data={data} className="my-table" />

and you can change the css code like

.my-table tr { font-weight: bold; color:red; }