Files
MermsProviders/src/app/merms-wallet/merms-wallet-routing.module.ts
T
Olu Amey f1d4c2b2f0 fix
2020-11-28 18:12:59 -05:00

18 lines
368 B
TypeScript

import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { MermsWalletPage } from './merms-wallet.page';
const routes: Routes = [
{
path: '',
component: MermsWalletPage
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule],
})
export class MermsWalletPageRoutingModule {}