17 lines
301 B
TypeScript
Executable File
17 lines
301 B
TypeScript
Executable File
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
|
|
|
|
@NgModule({
|
|
declarations: [AccordionComponent],
|
|
imports: [
|
|
CommonModule,
|
|
IonicModule
|
|
],
|
|
exports: [
|
|
]
|
|
})
|
|
export class SharedComponentsModule { }
|