Skip to content

Instantly share code, notes, and snippets.

@Bilkiss
Created February 23, 2021 10:42
Show Gist options
  • Save Bilkiss/02cc244684fe04d9aadb73851d4cbb52 to your computer and use it in GitHub Desktop.
Save Bilkiss/02cc244684fe04d9aadb73851d4cbb52 to your computer and use it in GitHub Desktop.
import { Component } from '@angular/core';
@Component({
selector: 'example-component',
template: '<div>Hello world! I'm an example component!</div>',
})
export class ExampleComponent {
constructor() {
console.log('Hey I am an example component!');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment