Skip to content

Instantly share code, notes, and snippets.

@lydemann
Created September 13, 2018 10:45
Show Gist options
  • Save lydemann/3e7339ea1ebf2e4c7a6b66c2ad85109b to your computer and use it in GitHub Desktop.
Save lydemann/3e7339ea1ebf2e4c7a6b66c2ad85109b to your computer and use it in GitHub Desktop.
import { Component, OnInit } from '@angular/core';
import { ButtonParentComponent } from '@app/shared/buttons/button-parent-component';
import { SquareButtonTypes } from '@app/shared/buttons/square-button/square-button-types';
@Component({
selector: 'app-square-button',
templateUrl: './square-button.component.html',
styleUrls: ['./square-button.component.css']
})
export class SquareButtonComponent extends ButtonParentComponent<SquareButtonTypes> implements OnInit {
constructor() {
super();
}
ngOnInit() {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment