Skip to content

Instantly share code, notes, and snippets.

@arturovt
Created July 28, 2019 17:32
Show Gist options
  • Save arturovt/f25077fddda0d40050534030a6dbfd4a to your computer and use it in GitHub Desktop.
Save arturovt/f25077fddda0d40050534030a6dbfd4a to your computer and use it in GitHub Desktop.
import { Component } from '@angular/core';
@Component({
selector: 'app-button',
template: `
<button>Click me</button>
`,
styles: [
`
button {
background: red;
}
`
]
})
export class ButtonComponent {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment