Format docs using linter and prettier.

This commit is contained in:
Spencer Ofwiti
2021-05-11 20:51:48 +03:00
parent 5228842e61
commit 208c448984
309 changed files with 11327 additions and 3307 deletions

View File

@@ -77,19 +77,35 @@ import { PagesComponent } from './pages.component';
const routes: Routes = [
{ path: 'home', component: PagesComponent },
{ path: 'tx', loadChildren: () => "import('@pages/transactions/transactions.module').then(m => m.TransactionsModule)" },
{ path: 'settings', loadChildren: () => "import('@pages/settings/settings.module').then(m => m.SettingsModule)" },
{ path: 'accounts', loadChildren: () => "import('@pages/accounts/accounts.module').then(m => m.AccountsModule)" },
{ path: 'tokens', loadChildren: () => "import('@pages/tokens/tokens.module').then(m => m.TokensModule)" },
{ path: 'admin', loadChildren: () => "import('@pages/admin/admin.module').then(m => m.AdminModule)" },
{ path: '**', redirectTo: 'home', pathMatch: 'full'}
{
path: 'tx',
loadChildren: () =>
"import('@pages/transactions/transactions.module').then((m) => m.TransactionsModule)",
},
{
path: 'settings',
loadChildren: () => "import('@pages/settings/settings.module').then((m) => m.SettingsModule)",
},
{
path: 'accounts',
loadChildren: () => "import('@pages/accounts/accounts.module').then((m) => m.AccountsModule)",
},
{
path: 'tokens',
loadChildren: () => "import('@pages/tokens/tokens.module').then((m) => m.TokensModule)",
},
{
path: 'admin',
loadChildren: () => "import('@pages/admin/admin.module').then((m) => m.AdminModule)",
},
{ path: '**', redirectTo: 'home', pathMatch: 'full' },
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule]
exports: [RouterModule],
})
export class PagesRoutingModule { }
export class PagesRoutingModule {}
</code></pre>
</div>
</div>