mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-20 21:35:50 +00:00
16 lines
352 B
TypeScript
16 lines
352 B
TypeScript
|
|
import { NgModule } from '@angular/core';
|
||
|
|
import { CommonModule } from '@angular/common';
|
||
|
|
import { FormsModule } from '@angular/forms';
|
||
|
|
import { IonicModule } from '@ionic/angular';
|
||
|
|
|
||
|
|
@NgModule({
|
||
|
|
imports: [
|
||
|
|
CommonModule,
|
||
|
|
FormsModule,
|
||
|
|
IonicModule,
|
||
|
|
],
|
||
|
|
exports: [],
|
||
|
|
entryComponents:[],
|
||
|
|
declarations: []
|
||
|
|
})
|
||
|
|
export class SharedModule {}
|