//plugin to any test js file and proceed :-)
//This is the best standard to work with inline styles
const style = {background:'cyan', color:'red'}
import React from 'react';
export default class InlineStyles extends React.Component{
render(){
return(
<h1 style={style}></h1>
);
}
}
0 Comments
Please Login to Comment Here