Here i am trying to create a simple angular application. I have created one more component named tutorialcomponent, than app component. Now using selector of tutorialComponent, i am trying to embed it in app component. But i am not getting output of app component after embedding. here is my app component:
import { Component } from '@angular/core';
import {TutorialComponent} from './tutorial/tutorial.component';
@Component({
selector: 'app-root',
template: `./app.component.html
<app-tutorial></app-tutorial>`,
styleUrls: ['./app.component.css']
})
export class AppComponent {
title = 'My Angular2 Login App';
}
Here is tutorialcomponent,
import { Component } from '@angular/core';
@Component({
selector: 'app-tutorial',
templateUrl: './tutorial.component.html',
styleUrls: ['./tutorial.component.css']
})
export class TutorialComponent {
}
Here is my output,
so please suggest me a way to bind components.

app-tutorialand templateUrl, not template, would identify the html content.