ref/ make app reloading/working with and without usehash routing strategy

This commit is contained in:
Maxime GRIS
2020-04-20 19:17:15 +02:00
parent 0994e6c0b3
commit 386ce67975
18 changed files with 167 additions and 27 deletions

View File

@@ -0,0 +1,14 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-detail',
templateUrl: './detail.component.html',
styleUrls: ['./detail.component.scss']
})
export class DetailComponent implements OnInit {
constructor() { }
ngOnInit(): void { }
}