Tried this:
style={backgroundColor = blue500}
or
style={backgroundColor = {blue500}}
but not working
Try this?
style={{ backgroundColor: {blue500} }}
or
style={{ backgroundColor: '#2196F3' }}
Actually, this worked:
style={{backgroundColor: blue500}}
Most helpful comment
Try this?
style={{ backgroundColor: {blue500} }}
or
style={{ backgroundColor: '#2196F3' }}