17 lines
305 B
TypeScript
17 lines
305 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { IonicModule } from 'ionic-angular';
|
|
import { HeadNavComponent } from './head-nav';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
HeadNavComponent
|
|
],
|
|
imports: [
|
|
IonicModule
|
|
],
|
|
exports: [
|
|
HeadNavComponent
|
|
]
|
|
})
|
|
export class HeadNavComponentModule {}
|