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.
22 lines
635 B
TypeScript
22 lines
635 B
TypeScript
1 month ago
|
import { NgModule } from '@angular/core';
|
||
|
import { CommonModule } from '@angular/common';
|
||
|
import { IonicModule } from '@ionic/angular';
|
||
|
import { ArticleDetailPage } from './article-detail.page';
|
||
|
import {ArticleDetailPageRoutingModule} from "./article-detail-routing.module";
|
||
|
import {HomePageModule} from "../home.module";
|
||
![]()
4 weeks ago
|
import {ImagePreviewComponent} from "./image-preview/image-preview.component";
|
||
1 month ago
|
|
||
|
@NgModule({
|
||
|
imports: [
|
||
|
CommonModule,
|
||
|
IonicModule,
|
||
|
ArticleDetailPageRoutingModule,
|
||
|
HomePageModule,
|
||
|
],
|
||
|
declarations: [
|
||
|
ArticleDetailPage,
|
||
|
ImagePreviewComponent,
|
||
|
]
|
||
|
})
|
||
|
export class ArticleDetailModule { }
|