Why CSS-in-JS?
Global and cascading nature of CSS
CSS is global by design! It is that way because we want to bring consistency across the website.
html {
font-family: Roboto, sans-serif;
}
By writing the above code every text on your website has a font-famil...
aniketjha.dev6 min read