mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 06:57:02 +08:00
20 lines
415 B
TypeScript
Executable File
20 lines
415 B
TypeScript
Executable File
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
import { TabsPageComponent } from './tabs.component';
|
|
import { TabsRoutingModule } from './tabs-routing.module';
|
|
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
IonicModule,
|
|
TabsRoutingModule,
|
|
],
|
|
declarations: [
|
|
TabsPageComponent,
|
|
]
|
|
})
|
|
export class TabsModule {}
|