2

enter image description hereProvider error suddenly, yesterday was fine, how to solve this problem ?

ReactDOM.render(
  <React.StrictMode>
    <Provider store={store}>
      <BrowserRouter>
        <App />
      </BrowserRouter>
    </Provider>
  </React.StrictMode>,
  document.getElementById("root")
);
mprv
  • 53
  • 2
  • 9

1 Answers1

1

According to this post by phry it can be caused by having multiple versions of @types/react installed on you project, check your package.json and see the recommendations on the post

https://stackoverflow.com/a/71877791/6854709

sneaky squid
  • 128
  • 7