Skip to content

Instantly share code, notes, and snippets.

@lydemann
Created July 28, 2018 09:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lydemann/87ca204cac6329b372ed038991cb914d to your computer and use it in GitHub Desktop.
Save lydemann/87ca204cac6329b372ed038991cb914d to your computer and use it in GitHub Desktop.
import { Component, OnInit, Input } from '@angular/core';
@Component({
selector: 'app-spinner',
templateUrl: './spinner.component.html',
styleUrls: ['./spinner.component.scss']
})
export class SpinnerComponent implements OnInit {
@Input() message = '';
constructor() { }
ngOnInit() {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment