import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { SupportComponent } from './support.component';
import { SupportRoutingModule } from './support-routing.module';
import { CoreModule } from '../core/core.module';
@NgModule({
declarations: [SupportComponent],
imports: [
CommonModule,
SupportRoutingModule,
CoreModule
]
})
export class SupportModule { }