Skip to content

Instantly share code, notes, and snippets.

@danrasmuson
Last active July 25, 2016 00:30
Show Gist options
  • Save danrasmuson/912a77d30fdf21a91824f83e34425763 to your computer and use it in GitHub Desktop.
Save danrasmuson/912a77d30fdf21a91824f83e34425763 to your computer and use it in GitHub Desktop.
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