definma-ui/src/app/home/home.component.ts

19 lines
352 B
TypeScript
Raw Normal View History

2020-05-19 12:49:06 +02:00
import { Component, OnInit } from '@angular/core';
2020-08-24 12:43:39 +02:00
import {LoginService} from '../services/login.service';
2020-05-19 12:49:06 +02:00
@Component({
selector: 'app-home',
templateUrl: './home.component.html',
styleUrls: ['./home.component.scss']
})
export class HomeComponent implements OnInit {
2020-08-24 12:43:39 +02:00
constructor(
public login: LoginService
) { }
2020-05-19 12:49:06 +02:00
ngOnInit() {
}
}