React Lesson #4 - Inline Styling for React Elements
We normally write inline CSS like this:
<h1 style="color: red"> Hello World </h1>
But, in JSX we cannot write it like this since a lot of things are happening on the background. It will give an error saying that we are trying to pass a string.
JSX ...
ratansharma.co.in2 min read