I'm using Angular 4 and I've received project from my friend, and when I run a command:
ng-serve -o
some view is opened, that view/template is in project called:
main-screen.component.html
And here is whole component:
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-main-screen',
templateUrl: './main-screen.component.html',
styleUrls: ['./main-screen.component.css']
})
export class MainScreenComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}
I saw that conent from main-screen.component.html
is loaded when app is runned - because I edited it to make sure that's right template, but I don't know where is set that main-screen.component.html
will be shown when app is runned, because I would like to show another template for example main-screen-blue.component.html
Thanks!
Cheers!