Skip to content

Instantly share code, notes, and snippets.

@jacob-jonkman
Created February 8, 2019 14:15
Show Gist options
  • Save jacob-jonkman/1d632b51b8ab478a1dcdd964fda46c7d to your computer and use it in GitHub Desktop.
Save jacob-jonkman/1d632b51b8ab478a1dcdd964fda46c7d to your computer and use it in GitHub Desktop.
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: 'app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
public colors = ['blue', 'red', 'yellow'];
public language = 'eng';
public switchLanguage(language) {
this.language = language;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment