mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 21:06:06 +00:00
28 lines
800 B
TypeScript
28 lines
800 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 '@teamhive/capacitor-video-recorder';
|
|
import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
|
|
import { MatProgressBarModule } from '@angular/material/progress-bar';
|
|
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonicModule,
|
|
NewPublicationPageRoutingModule,
|
|
FontAwesomeModule,
|
|
MatProgressBarModule,
|
|
],
|
|
exports: [NewPublicationPage],
|
|
declarations: [NewPublicationPage]
|
|
})
|
|
export class NewPublicationPageModule {}
|