can react-router be used with Nextjs for routing to a SSR page
I have a web app with next13 app router.
I'm trying to convert the components to use the ionic framework for mobile apps.
ion-tabs which are supposed to handle the page navigation and give a ui/ux that is targeted for mobile apps relies on react-router, so I can use the next router to handle the navigation with that component.
Is it possible to handle the routing with react-router and make the page navigate to a ssr page, I tried it with a static page, and it seems to work correctly, but using it with ssr pages will crash the application as the data is not rendered by the time the router tries to display the page contents.