Created
October 9, 2018 16:23
-
-
Save vsavkin/1953848c40d48fc5e383c3b275fe66fe 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
import { Component } from '@angular/core'; | |
@Component({ | |
selector: 'myorg-shell', | |
template: ` | |
<h1>{{ title }}</h1> | |
<div> | |
<a href="learn-more">Learn more about Tuskdesk</a> | |
<a href="learn-more-about-myorg">Learn more about Myorg</a> | |
Copyright stuff is in here as well. | |
</div> | |
`, | |
styles: [] | |
}) | |
export class ShellComponent { | |
@Input() title: string; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment