I have an angular 2 application that I am building while watching a video tutorial. But the problem is that I referenced the files very well but i am having page not found in the console of my browser. HERE IS THE CODE OF MY COMPONENT
@Component({
moduleId: module.id,
selector: 'my-employee',
templateUrl: '.Employee/employee.component.html'
})
export class EmployeeComponent {
firstName: string = 'Mr X';
lastName: string = 'Johnson';
gender: string = 'Male';
age: number = 20;
}
The templateUrl is properly referenced but i am still getting page nof found error. Please any help will be highly welcomed. Thanks.
UPDATE: STRUCTURE OF PROJECT
