added OnInit

This commit is contained in:
2023-01-31 15:18:29 +01:00
parent bbacc0016b
commit 95ceb01667
3 changed files with 13 additions and 7 deletions

View File

@@ -1,10 +1,12 @@
import { Component } from '@angular/core';
import {Component, OnInit} from '@angular/core';
@Component({
selector: 'app-home',
templateUrl: './home.component.html',
styleUrls: ['./home.component.css']
})
export class HomeComponent {
export class HomeComponent implements OnInit {
ngOnInit(): void {
}
}