I need to figure out, is there any difference between this code?
ReactDOM.render( <React.StrictMode> <App /> </React.StrictMode>, document.getElementById('root') ); And this babel configuration
{ "strictMode": true } If I use only just babel config with strictMode:true then no need to StrictMode component? And vice versa
React.StrictModeis a React component with "special behavior" for testing invariants in non-production builds, babel is a code transpiler, thestrictModebeing a Javascript thing.