Initial application generated by JHipster-5.8.2
This commit is contained in:
12
src/main/webapp/app/home/home.module.ts
Normal file
12
src/main/webapp/app/home/home.module.ts
Normal file
@ -0,0 +1,12 @@
|
||||
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
||||
import { RouterModule } from '@angular/router';
|
||||
|
||||
import { HsadminNgSharedModule } from 'app/shared';
|
||||
import { HOME_ROUTE, HomeComponent } from './';
|
||||
|
||||
@NgModule({
|
||||
imports: [HsadminNgSharedModule, RouterModule.forChild([HOME_ROUTE])],
|
||||
declarations: [HomeComponent],
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
||||
})
|
||||
export class HsadminNgHomeModule {}
|
Reference in New Issue
Block a user