Add some initial web UI

This commit is contained in:
2019-09-10 19:39:06 -04:00
parent 807d6cb5b5
commit a32e65de1c
51 changed files with 14219 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { WeatherComponent } from './weather/weather.component';
import { DashboardComponent } from './dashboard/dashboard.component';
import { LaundryComponent } from './laundry/laundry.component';
import { WeatherChartsComponent } from './weather-charts/weather-charts.component';
const routes: Routes = [
{
path: '',
component: DashboardComponent
},
{
path: 'dashboard',
component: DashboardComponent
},
{
path: 'weather',
component: WeatherComponent
},
{
path: 'weather/charts',
component: WeatherChartsComponent
},
{
path: 'laundry',
component: LaundryComponent
}
];
@NgModule({
imports: [RouterModule.forRoot(routes)],
exports: [RouterModule]
})
export class AppRoutingModule { }