added error component and coverage for new components

This commit is contained in:
William Welling
2017-10-04 14:17:19 -05:00
parent a9faab6833
commit 7937a47aa5
14 changed files with 138 additions and 20 deletions

View File

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