datasurvey/src/main/webapp/app/home/home.module.ts

14 lines
470 B
TypeScript
Raw Normal View History

2021-07-03 21:48:27 +00:00
import { NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';
import { SharedModule } from 'app/shared/shared.module';
import { HOME_ROUTE } from './home.route';
import { HomeComponent } from './home.component';
2021-07-18 09:39:39 +00:00
import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
2021-07-03 21:48:27 +00:00
@NgModule({
2021-07-18 09:39:39 +00:00
imports: [SharedModule, RouterModule.forChild([HOME_ROUTE]), FontAwesomeModule],
2021-07-03 21:48:27 +00:00
declarations: [HomeComponent],
})
export class HomeModule {}