|
import {Component} from '@angular/core';
|
|
import { html } from '@environments/htmlenv';
|
|
|
|
@Component({
|
|
selector: 'grid',
|
|
templateUrl: 'grid.component.html',
|
|
styleUrls: ['grid.component.scss']
|
|
})
|
|
export class GridComponent {
|
|
|
|
ngOnInit(){
|
|
console.log('PROJECT',html.project)
|
|
}
|
|
}
|