mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-17 18:54:11 +08:00
22 lines
584 B
TypeScript
22 lines
584 B
TypeScript
import { CommonModule } from '@angular/common';
|
|
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
|
|
|
|
import { NavThenTabsPageComponent } from './nav-then-tabs.component';
|
|
import { NavThenTabsRoutingModule } from './nav-then-tabs-routing.module';
|
|
|
|
import { IonicAngularModule, IonicRouterModule } from '@ionic/angular';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
NavThenTabsPageComponent,
|
|
],
|
|
imports: [
|
|
CommonModule,
|
|
IonicAngularModule,
|
|
IonicRouterModule,
|
|
NavThenTabsRoutingModule
|
|
],
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
|
})
|
|
export class NavThenTabsModule {}
|