Last active
April 17, 2021 09:06
-
-
Save AbhiAgarwal192/0bbee3a21e0bc531ca5d4b30a3fe05a7 to your computer and use it in GitHub Desktop.
hello-world component
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
<p>Hello World!</p> |
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, OnInit } from '@angular/core'; | |
@Component({ | |
selector: 'app-hello-world', | |
templateUrl: './hello-world.component.html', | |
styleUrls: ['./hello-world.component.scss'] | |
}) | |
export class HelloWorldComponent implements OnInit { | |
constructor() { } | |
ngOnInit(): void { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment