Last active
July 25, 2016 00:30
-
-
Save danrasmuson/912a77d30fdf21a91824f83e34425763 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: 'dronedeploy-plugin', | |
template: ` | |
<h2> | |
Hello <span class="blue">{{name}}</span> | |
</h2> | |
`, | |
styles: [` | |
.blue{ | |
color: #2f9fe6; | |
} | |
`], | |
}) | |
export class Plugin { | |
constructor() { | |
this.name = 'DroneDeploy' | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment