@compodoc/compodoc
Version:
The missing documentation tool for your Angular application
15 lines (13 loc) • 307 B
text/typescript
import { Component } from '@angular/core';
/**
* The todomvc component
*
* @example
* <todomvc>The example of the component</todomvc>
*/
@Component({
selector: 'todomvc',
templateUrl: './todomvc.component.html',
styleUrls: ['../todomvc.component.scss']
})
export class TodoMVCComponent {}