Field overrides in Table React component

Hey guys. I’m workin on some app plugin for Grafana, and I decided to use Grafana Table component as one of my visualizations. So far I’ve managed to convert my data to the DataFrames, so it can be shown in table:

<Table data={someDataFrame} width={1600} height={520} cellHeight={TableCellHeight.Lg}/>

But now I’m stuck with problem of overriding some properties of the table (in this case I need a rule to override background color in column, based on value, e.g. value ERROR for red background and WARN for orange one.)

Where, if it possible, can I achieve it?