Created
January 18, 2019 22:08
-
-
Save wesleygrimes/6951524e04e607ac840ca5490cccbf4e to your computer and use it in GitHub Desktop.
Dynamic Content Outlet Error Component
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Component, Input } from '@angular/core'; | |
@Component({ | |
selector: 'app-dynamic-content-outlet-error-component', | |
template: ` | |
<div>{{ errorMessage }}</div> | |
` | |
}) | |
export class DynamicContentOutletErrorComponent { | |
@Input() errorMessage: string; | |
constructor() {} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment