
Hi partner,
It might because of the strict mode in React.
StrictMode currently helps with warning about deprecated findDOMNode usage, when strict mode is enabled, React compiles a list of all class components using the unsafe lifecycles, and logs a warning message with information about these components.
Please try to change <React.StrictMode><App /><React.StrictMode> to <App /> in index.js
Such as the following screenshots
You have to comment it.