src/app/about/todomvc/todomvc.component.ts
The todomvc component
selector | todomvc |
templateUrl | ./todomvc.component.html |
import { Component } from '@angular/core';
/**
* The todomvc component
*/
@Component({
selector: 'todomvc',
templateUrl: './todomvc.component.html'
})
export class TodoMVCComponent {
}
<span>TodoMVC is a great project helping you select an MV* framework : <a href="http://todomvc.com/" target="_blank">website</a></span>