React Fundamentals: Components, JSX, State, and Re-rendering
I think I understood React a little backwards.
I started with the syntax.
I saw:
function App() {
return <h1>Hello World</h1>;
}
Okay.
Then I saw:
const [count, setCount] = useState(0);
Okay…
Then
devwithsahil.hashnode.dev15 min read