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 {}
