Skip to content
home.module.ts 493 B
Newer Older
wangqinghua's avatar
wangqinghua committed
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { RouterModule } from '@angular/router';
import { BootappSharedModule } from '../shared';

import {  HomeComponent } from './';

@NgModule({
    imports: [
        BootappSharedModule,
        // RouterModule.forChild([ HOME_ROUTE ])
    ],
    declarations: [
        HomeComponent,
    ],
    entryComponents: [
    ],
    providers: [
    ],
    schemas: [CUSTOM_ELEMENTS_SCHEMA]
})
export class BootappHomeModule {}