I'm trying to update my ionic React app to 6. I followed the instructions here: https://ionicframework.com/docs/intro/upgrading-to-ionic-6#react
I did:
npm install react@latest react-dom@latestnpm install @ionic/react@6 @ionic/react-router@6import { setupIonicReact } from '@ionic/react';
^^^^^^
ERROR: Module '"@ionic/core"' has no exported member 'setupIonicReact'.ts(2305)
...
setupIonicReact({
mode: 'md'
});
What I'm doing wrong?
I found the issue:
import { setupIonicReact } from '@ionic/core';
should be this:
import { setupIonicReact } from '@ionic/react';
____________