Angular - Components
Identify the error in this Angular component using an external template:
The file
@Component({
selector: 'app-error',
templateUrl: './error.component.html'
})
export class ErrorComponent {
title = 'Error Example';
}The file
error.component.html does not exist in the project folder.