Skip to content

Instantly share code, notes, and snippets.

@hackrio1
Created September 25, 2018 21:11
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 hackrio1/d21a3346ec5df2ed4e30f48eb4ea9e5e to your computer and use it in GitHub Desktop.
Save hackrio1/d21a3346ec5df2ed4e30f48eb4ea9e5e to your computer and use it in GitHub Desktop.
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-demo',
templateUrl: './demo.component.html',
styleUrls: './demo.component.scss'
})
export class DemoComponent implements OnInit {
message: string,
constructor: () {}
ngOnInit {
this.message = "Hello"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment