Skip to content

Instantly share code, notes, and snippets.

@AbhiAgarwal192
Last active April 17, 2021 09:06
Show Gist options
  • Save AbhiAgarwal192/0bbee3a21e0bc531ca5d4b30a3fe05a7 to your computer and use it in GitHub Desktop.
Save AbhiAgarwal192/0bbee3a21e0bc531ca5d4b30a3fe05a7 to your computer and use it in GitHub Desktop.
hello-world component
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