Skip to content

Instantly share code, notes, and snippets.

@mathiasgheno
Created May 12, 2018 05:45
Show Gist options
  • Save mathiasgheno/4bc4fb9f7102d908daef82a90b5c49f7 to your computer and use it in GitHub Desktop.
Save mathiasgheno/4bc4fb9f7102d908daef82a90b5c49f7 to your computer and use it in GitHub Desktop.
import { Component } from '@angular/core';
import { environment } from '../../src/environments/environment';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
ambiente: string;
constructor() {
this.ambiente = environment.ambiente;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment