Re-initialized the project with angular-cli and set it up as the build tool chain.

This commit is contained in:
Manuel Friedli 2017-04-08 00:24:44 +02:00
parent 6dd65fd488
commit 17afa92bfe
80 changed files with 6584 additions and 621 deletions

View file

@ -0,0 +1,15 @@
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
const routes: Routes = [
{
path: '',
children: []
}
];
@NgModule({
imports: [RouterModule.forRoot(routes)],
exports: [RouterModule]
})
export class AppRoutingModule { }