src/app/components/not-found/not-found.component.ts
Componente cuando no encuentra nada
selector | blog-not-found |
styleUrls | ./not-found.component.css |
templateUrl | ./not-found.component.html |
import { Component } from '@angular/core';
/**
* Componente cuando no encuentra nada
*/
@Component({
selector: 'blog-not-found',
templateUrl: './not-found.component.html',
styleUrls: ['./not-found.component.css']
})
export class NotFoundComponent {
}
<p>
not-found works!
</p>
./not-found.component.css