What is the best way to serve css when rendering React components from server side? Currently i have a style tag defined in the head of the parent component. It looks like the following
<style>{"\
.test-cases{\
border:2px solid black;\
margin-left:30px\
background-color:blue;\
\
}\
.describe{\
margin-left:90px;\
background-color:yellow;\
}\
"}</style>
As you can see this can get nasty, as i start applying more css properties. What is the best way to do this?