function MyComponent(){
return <div style={{ color: 'blue', lineHeight : 10, padding: 20 }}> Inline Styled Component</div>
}
ORconst mystyle = {
color: 'blue',
lineHeight : 10,
padding: 20
};
function MyComponent(){
return <div style={mystyle}> Inline Styled Component</div>
}