app.component.ts 316 B

12345678910111213
  1. import { Component } from '@angular/core';
  2. @Component({
  3. selector: 'app-root',
  4. templateUrl: './app.component.html',
  5. styleUrls: ['./app.component.scss']
  6. })
  7. export class AppComponent {
  8. title = 'fatboar';
  9. // Link to our api, pointing to api-preprod.foodgame.fr
  10. //API = 'https://api-preprod.foodgame.fr';
  11. }