mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 12:37:53 +00:00
28 lines
847 B
TypeScript
28 lines
847 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
import { NewPublicationPageRoutingModule } from './new-publication-routing.module';
|
|
|
|
import { NewPublicationPage } from './new-publication.page';
|
|
import { MatProgressBarModule } from '@angular/material/progress-bar';
|
|
import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
|
|
import { SwiperPageModule } from 'src/app/shared/swiper/swiper.module';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonicModule,
|
|
NewPublicationPageRoutingModule,
|
|
MatProgressBarModule,
|
|
FontAwesomeModule,
|
|
SwiperPageModule
|
|
],
|
|
exports: [NewPublicationPage],
|
|
declarations: [NewPublicationPage]
|
|
})
|
|
export class NewPublicationPageModule {}
|