Hacker News new | ask | show | jobs
by roasbeef 3539 days ago
I am seeing css styles in javascript more and more now. Is this a performance thing?
2 comments

Worth noting that the same author created a fairly popular library for JS styles: https://github.com/casesandberg/reactcss

It's more about getting locally-scoped, composable CSS than performance. It's similar in concept to CSS Modules.

I believe it's more of a convenience, and React-based projects are setup for it. You can avoid dealing with the global cascade and there's no need to maintain a parallel set of files for styling; it's all in the JavaScript.