1
0

ngIf else ng-template for initial loading work

This commit is contained in:
William Welling
2017-10-03 15:29:30 -05:00
parent b99bc70302
commit fa99152104
9 changed files with 89 additions and 68 deletions

View File

@@ -0,0 +1,12 @@
import { Component, Input } from '@angular/core';
@Component({
selector: 'ds-loading',
styleUrls: ['./loading.component.scss'],
templateUrl: './loading.component.html'
})
export class LoadingComponent {
@Input() message: "Loading...";
}