import {bootstrap} from '@angular/platform-browser'; import {Component} from '@angular/core'; import {Zippy} from './zippy'; @Component({ selector: 'zippy-app', template: ` This is some content. `, directives: [Zippy] }) class ZippyApp { logs: string[] = []; pushLog(log: string) { this.logs.push(log); } } export function main() { bootstrap(ZippyApp); }