Created
June 12, 2020 16:28
-
-
Save Dornhoth/a99afe23ff03764d4daf811f0a475b34 to your computer and use it in GitHub Desktop.
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
| <app-error-card></app-error-card> | |
| <app-error-card> | |
| Another error text | |
| <div> | |
| <a href="google.com">Google it</a> | |
| </div> | |
| </app-error-card> | |
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
| <ng-content></ng-content> |
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 } from '@angular/core'; | |
| @Component({ | |
| selector: 'app-error-card', | |
| templateUrl: './error-card.component.html', | |
| styleUrls: ['./error-card.component.scss'] | |
| }) | |
| export class ErrorCardComponent { } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment