Skip to content

Instantly share code, notes, and snippets.

@samarthagarwal
Created August 24, 2018 12:55
Show Gist options
  • Save samarthagarwal/f9b76f702c41af8f0cd4cb0dfbbf8e83 to your computer and use it in GitHub Desktop.
Save samarthagarwal/f9b76f702c41af8f0cd4cb0dfbbf8e83 to your computer and use it in GitHub Desktop.
import { Component } from '@angular/core';
@Component({
selector: 'app-home',
templateUrl: 'home.page.html',
styleUrls: ['home.page.scss'],
})
export class HomePage {
rememberMe: boolean;
displaySuperhero(){
alert("You set Remember me to " + this.rememberMe);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment