inliine styling in react js code example
Example 1: inline styling in react
render() {
return (
<p style={{color: 'red'}}>
Example Text
</p>
);
}
Example 2: inline styling in react
style={ someCondition ? { textAlign:'center', paddingTop: '50%'} : {}}