Created
March 18, 2019 13:37
-
-
Save trumbitta/2a13d885df91cc16f7ae2965b3e65eb3 to your computer and use it in GitHub Desktop.
Angular for dads - first steps
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
/** @format */ | |
import { Component } from '@angular/core'; | |
@Component({ | |
selector: 'ng4d-root', | |
template: ` | |
<article> | |
<h1>Hello, I'm William!</h1> | |
<p>And I'm a 41 years old dad.</p> | |
</article> | |
`, | |
styles: [], | |
}) | |
export class AppComponent {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment