Files
doneit-web/src/app/ui/chat/modal/chat-debugging/chat-debugging-routing.module.ts
T

18 lines
376 B
TypeScript
Raw Normal View History

2022-09-26 16:16:37 +01:00
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { ChatDebuggingPage } from './chat-debugging.page';
const routes: Routes = [
{
path: '',
component: ChatDebuggingPage
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule],
})
export class ChatDebuggingPageRoutingModule {}