import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-buttons', template: ` Check Me! `, styles: [] }) export class ButtonsComponent implements OnInit { constructor() { } ngOnInit() { } }