Skip to content

Instantly share code, notes, and snippets.

@wKoza
Created February 26, 2017 10:06
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/573d0685308586d1b08f44901c8f8e06 to your computer and use it in GitHub Desktop.
Save wKoza/573d0685308586d1b08f44901c8f8e06 to your computer and use it in GitHub Desktop.
import { Component} from '@angular/core';
@Component({
selector: 'app-child',
template: `
<h1>Mon second Component</h1>
`,
styles: [`
h1 {
color : blue;
}
`]
})
export class ChildComponent {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment