mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 18:31:52 +00:00
21 lines
599 B
TypeScript
21 lines
599 B
TypeScript
import { NgModule } from '@angular/core'
|
|
import { CommonModule } from '@angular/common'
|
|
import { RecommendationButtonComponent } from './recommendation-button.component'
|
|
import { IonicModule } from '@ionic/angular'
|
|
import { RouterModule } from '@angular/router'
|
|
import { SharingModule } from 'src/app/modules/sharing.module'
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
RecommendationButtonComponent,
|
|
],
|
|
imports: [
|
|
CommonModule,
|
|
IonicModule,
|
|
RouterModule.forChild([]),
|
|
SharingModule,
|
|
],
|
|
exports: [RecommendationButtonComponent],
|
|
})
|
|
export class RecommendationButtonComponentModule { }
|