How to display a page with tabs in modal with Ionic 4

I have a simple page in Ionic 4 with 3 tabs.

I need to open this page in a modale, but if I do a simple :

let profileModal = await this.modalCtrl.create({
      component: MyPage
    });
profileModal.present()

I get
Error: Cannot match any routes. URL Segment: 'tabone'
and Mypage’s tab contain the component of the current route instead of its tabs’component

the routes for the tabs are in “MyPageModule”, but I can’t display it in modal, there is only a “component” option in modal, not a “module” option

How can I display MyPage in a modale ?