Created
February 23, 2021 10:42
-
-
Save Bilkiss/02cc244684fe04d9aadb73851d4cbb52 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
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