mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-04 06:19:44 +00:00
19 lines
477 B
TypeScript
19 lines
477 B
TypeScript
import { NgModule } from '@angular/core'
|
|
import { CommonModule } from '@angular/common'
|
|
import { SkeletonListComponent } from './skeleton-list.component'
|
|
import { IonicModule } from '@ionic/angular'
|
|
import { RouterModule } from '@angular/router'
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
SkeletonListComponent,
|
|
],
|
|
imports: [
|
|
CommonModule,
|
|
IonicModule,
|
|
RouterModule.forChild([]),
|
|
],
|
|
exports: [SkeletonListComponent],
|
|
})
|
|
export class SkeletonListComponentModule { }
|