You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
582 B
TypeScript
23 lines
582 B
TypeScript
1 month ago
|
import { NgModule } from '@angular/core';
|
||
|
import { CommonModule } from '@angular/common';
|
||
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
||
![]()
3 weeks ago
|
import { HttpClientModule } from '@angular/common/http';
|
||
1 month ago
|
import { IonicModule } from '@ionic/angular';
|
||
|
|
||
|
import { MinePageRoutingModule } from './mine-routing.module';
|
||
|
|
||
|
import { MinePage } from './mine.page';
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [
|
||
|
CommonModule,
|
||
|
FormsModule,
|
||
|
ReactiveFormsModule,
|
||
![]()
3 weeks ago
|
HttpClientModule,
|
||
1 month ago
|
IonicModule,
|
||
|
MinePageRoutingModule
|
||
|
],
|
||
|
declarations: [MinePage]
|
||
|
})
|
||
|
export class MinePageModule {}
|