Are you using inline styles, managed manually or with a library? External stylesheets applied mostly through classes? Inline <style> tags?<p>What's the size of your codebase? How many developers working on it? Were there unexpected pleasant or unpleasant gotchas that you ran into? Does it matter, or have you found you spend very little time grappling with scoping component styling?<p>I've seen all of the above feature in various blog posts or trending GitHub libraries and don't have a strong intuition for the tradeoffs. React favors self-contained, modular components, so external stylesheets doesn't seem idiomatic. On the flipside, inline styling everything eliminates the possibility of using certain CSS transforms and pseudoselectors (iirc).