Skip to content

Instantly share code, notes, and snippets.

@realtomaszkula
Last active June 10, 2018 14:22
Show Gist options
  • Save realtomaszkula/9b1b968c9a2217424873aedb62a83260 to your computer and use it in GitHub Desktop.
Save realtomaszkula/9b1b968c9a2217424873aedb62a83260 to your computer and use it in GitHub Desktop.
@Component({
selector: 'app-card',
template: `
<header></header>
<main>
<section class="top"></section>
<button class="fab">+</button>
<section class="bottom"></section>
</main>
`,
styles: [`
header {
background-color: #5c6bc0;
}
.fab {
background-color: #ec407a;
}
// ...
`]
})
export class CardComponent {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment