The calm before updating angular and material

This commit is contained in:
GloriousCode
2017-10-13 17:50:35 +11:00
parent f66ce8e159
commit d793030846
13 changed files with 190 additions and 14 deletions

View File

@@ -2,6 +2,7 @@ import { HomeComponent } from './pages/home/home.component';
import { SettingsComponent } from './pages/settings/settings.component';
import { AboutComponent } from './pages/about/about.component';
import { DashboardComponent } from './pages/dashboard/dashboard.component';
import { WalletComponent } from './pages/wallet/wallet.component';
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
@@ -22,6 +23,10 @@ const routes: Routes = [
{
path: 'settings',
component: SettingsComponent
},
{
path: 'wallet',
component: WalletComponent
}
];