I am new in Angular2. I have tried to create a component but showing an error.
This is the app.component.ts file.
app.component.ts
import { Component } f
Had the same issue, found that the template component tags worked with . So, if your component is called mycomponent.component.ts:
mycomponent.component.ts
@Component({ selector: 'my-app', template: ` Hello {{name}} Something `,