21 lines
940 B
TypeScript
21 lines
940 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { Routes, RouterModule } from '@angular/router';
|
|
|
|
import { PagesComponent } from './pages.component';
|
|
|
|
const routes: Routes = [
|
|
{ path: 'home', component: PagesComponent },
|
|
{ path: 'tx', loadChildren: () => import('./transactions/transactions.module').then(m => m.TransactionsModule) },
|
|
{ path: 'settings', loadChildren: () => import('./settings/settings.module').then(m => m.SettingsModule) },
|
|
{ path: 'accounts', loadChildren: () => import('./accounts/accounts.module').then(m => m.AccountsModule) },
|
|
{ path: 'tokens', loadChildren: () => import('./tokens/tokens.module').then(m => m.TokensModule) },
|
|
{ path: 'admin', loadChildren: () => import('./admin/admin.module').then(m => m.AdminModule) },
|
|
{ path: '**', redirectTo: 'home', pathMatch: 'full'}
|
|
];
|
|
|
|
@NgModule({
|
|
imports: [RouterModule.forChild(routes)],
|
|
exports: [RouterModule]
|
|
})
|
|
export class PagesRoutingModule { }
|