Re-initialized the project with angular-cli and set it up as the build tool chain.
This commit is contained in:
parent
6dd65fd488
commit
17afa92bfe
80 changed files with 6584 additions and 621 deletions
15
src/app/app-routing.module.ts
Normal file
15
src/app/app-routing.module.ts
Normal 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 { }
|
||||
Loading…
Add table
Add a link
Reference in a new issue