Skip to content

Instantly share code, notes, and snippets.

@wKoza

wKoza/app.ts Secret

Created January 29, 2017 12:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wKoza/54d5a672736bd27fe41e11661f14cf81 to your computer and use it in GitHub Desktop.
Save wKoza/54d5a672736bd27fe41e11661f14cf81 to your computer and use it in GitHub Desktop.
@Component({
selector: 'my-app',
template: `
<card>
<h4 class="card-title">Special title treatment</h4>
<p class="card-text">With supporting text below as a natural lead-in to additional content.</p>
<a href="#" class="btn btn-primary">Go somewhere</a>
</card>
`,
})
export class App {
body:string;
constructor() {
this.body = 'Body\'s popin';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment