Created
June 10, 2018 14:21
-
-
Save realtomaszkula/8356703c9d154a68e39c7f60a4a3d178 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
@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: var(--primary); | |
} | |
.fab { | |
background-color: var(--accent); | |
} | |
// ... | |
`] | |
}) | |
export class CardComponent {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment