Remove weather and laundry from sidenav and routing

This commit is contained in:
2019-10-08 19:17:34 -04:00
parent c989a20f22
commit 50599a8dc4
2 changed files with 0 additions and 28 deletions

View File

@@ -1,26 +1,16 @@
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { DashboardComponent } from './components/dashboard/dashboard.component';
import { LaundryComponent } from './components/laundry/laundry.component';
import { WeatherChartsComponent } from './components/weather/charts/weather-charts.component';
import { WeatherCurrentComponent } from './components/weather/current/weather-current.component';
const routes: Routes = [
{
path: '',
component: DashboardComponent
},
{
path: 'weather',
component: WeatherCurrentComponent
},
{
path: 'weather-charts',
component: WeatherChartsComponent
},
{
path: 'laundry',
component: LaundryComponent
}
];