fuse-angular/src/app/main/apps/chat/chat.module.ts

24 lines
485 B
TypeScript
Raw Normal View History

import {NgModule} from '@angular/core';
import {SharedModule} from '../../../core/shared.module';
import {RouterModule, Routes} from '@angular/router';
import {ChatComponent} from './chat.component';
const routes: Routes = [
{
path: 'apps/chat', component: ChatComponent, children: []
}
]
@NgModule({
imports : [
SharedModule,
RouterModule.forChild(routes)
],
declarations: [
ChatComponent
]
})
export class ChatModule
{
}