added notes.comments field

This commit is contained in:
VLE2FE
2020-08-24 12:43:39 +02:00
parent 602dfb51da
commit 65f740af77
11 changed files with 94 additions and 61 deletions

View File

@ -1,4 +1,5 @@
import { Component, OnInit } from '@angular/core';
import {LoginService} from '../services/login.service';
@Component({
selector: 'app-home',
@ -7,7 +8,9 @@ import { Component, OnInit } from '@angular/core';
})
export class HomeComponent implements OnInit {
constructor() { }
constructor(
public login: LoginService
) { }
ngOnInit() {
}