Skip to content

Instantly share code, notes, and snippets.

@rahulsahay19
Created July 10, 2018 04:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rahulsahay19/ca1002b3605446e4c0174cda5948ac4e to your computer and use it in GitHub Desktop.
Save rahulsahay19/ca1002b3605446e4c0174cda5948ac4e to your computer and use it in GitHub Desktop.
greeter
import { Component, OnInit, ViewEncapsulation } from '@angular/core';
@Component({
selector: 'app-greeter',
templateUrl: './greeter.component.html',
styleUrls: ['./greeter.component.css'],
encapsulation: ViewEncapsulation.Native
})
export class GreeterComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment