How to add color to the html 5 <td> data?
for eg:
<td>{ this.props.item.status }</td>
Here I have to highlight status with some color.
Could anyone help me out on this?
How to add color to the html 5 <td> data?
for eg:
<td>{ this.props.item.status }</td>
Here I have to highlight status with some color.
Could anyone help me out on this?
You can use style tag in order to add style to your element:
let tdStyle = {
color: 'white',
}
<td style={tdStyle}>{ this.props.item.status }</td>
You can check official documentation here.