You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -314,6 +314,7 @@
314
314
|298|[What is the difference between Real DOM and Virtual DOM?](#what-is-the-difference-between-real-dom-and-virtual-dom)|
315
315
|299|[How to add a bootstrap for a react application?](#how-to-add-a-bootstrap-for-a-react-application)|
316
316
|300|[Can you list down top websites or applications using react as front end framework?](#can-you-list-down-top-websites-or-applications-using-react-as-front-end-framework)|
317
+
|301|[Is it recommended to use CSS In JS technique in React?](#is-it-recommended-to-use-css-in-js-technique-in-react)|
317
318
318
319
## Core React
319
320
@@ -5001,3 +5002,5 @@
5001
5002
8. Flipboard
5002
5003
9. Netflix
5003
5004
10. PayPal
5005
+
301. ### Is it recommended to use CSS In JS technique in React?
5006
+
React does not have any opinion about how styles are defined but if you are a beginner then good starting point is to define your styles in a separate *.css file as usual and refer to them using className. This functionality is not part of React but came from third-party libraries. But If you want to try a different approach(CSS-In-JS) then styled-components library is a good option.
0 commit comments