React Components Concepts
Purity
• Same input gives the same output
• Does not update any external variables
----
Note
strict mode
This helps identify bad practices.
<StrictMode>
<App />
</StrickMode>
React Components Concepts
Purity
• Same input gives the same output
• Does not update any external variables
----
Note
strict mode
This helps identify bad practices.
<StrictMode>
<App />
</StrickMode>