Skip to content

Instantly share code, notes, and snippets.

@zainuleb
Created November 24, 2021 19:30
Show Gist options
  • Save zainuleb/2cea11cfb956c7b783168db941c72145 to your computer and use it in GitHub Desktop.
Save zainuleb/2cea11cfb956c7b783168db941c72145 to your computer and use it in GitHub Desktop.
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css'],
})
export class AppComponent {
currentUser = 'Asim';
userComment() {
return this.currentUser + ' Kinda hates Miki';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment