style chat-contacts-list page

This commit is contained in:
tiago.kayaya
2020-12-22 15:53:30 +01:00
parent 4c16f7bd83
commit 92393c5970
17 changed files with 319 additions and 93 deletions
@@ -0,0 +1,17 @@
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { BtnSeguintePage } from './btn-seguinte.page';
const routes: Routes = [
{
path: '',
component: BtnSeguintePage
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule],
})
export class BtnSeguintePageRoutingModule {}