This is my react render function
render:function(){
return (
<div>
<p className="rr">something</p>
<style>
.rr{
color:red;
}
</style>
</div>
)
}
This gives me this error
"JSX: Error: Parse Error: Line 22: Unexpected token :"
What's wrong here? Can I embed full normal css into a react component?