Skip to content

Instantly share code, notes, and snippets.

@alemohamad
Last active April 17, 2019 09:13
Show Gist options
  • Save alemohamad/d4a15001ddff2859ea20e48128f75b16 to your computer and use it in GitHub Desktop.
Save alemohamad/d4a15001ddff2859ea20e48128f75b16 to your computer and use it in GitHub Desktop.
Angular 7 initial component template files.
<p>
contact works!
</p>
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-contact',
templateUrl: './contact.component.html',
styleUrls: ['./contact.component.scss']
})
export class ContactComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment