Skip to content

Instantly share code, notes, and snippets.

@lydemann
Created July 28, 2018 09:44
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/d27c87e88881dcf90f1befe8fea66f87 to your computer and use it in GitHub Desktop.
Save lydemann/d27c87e88881dcf90f1befe8fea66f87 to your computer and use it in GitHub Desktop.
import { Component, Input, OnInit } from '@angular/core';
@Component({
selector: 'app-spinner-overlay',
templateUrl: './spinner-overlay.component.html',
styleUrls: ['./spinner-overlay.component.scss']
})
export class SpinnerOverlayComponent implements OnInit {
@Input() public message: string;
constructor() {}
public ngOnInit() {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment