frontend/src/app/home/home.page.ts

16 lines
284 B
TypeScript
Raw Normal View History

2020-02-08 02:01:00 +00:00
import { Component } from '@angular/core';
import {ApiService} from '../service/api.service';
2020-02-08 02:01:00 +00:00
@Component({
selector: 'app-home',
templateUrl: 'home.page.html',
styleUrls: ['home.page.scss'],
})
export class HomePage {
constructor(
protected api: ApiService,
) {}
2020-02-08 02:01:00 +00:00
}