mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2025-04-19 15:29:18 +00:00
16 lines
294 B
TypeScript
16 lines
294 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-hello-world',
|
|
templateUrl: './hello-world.component.html',
|
|
styleUrls: ['./hello-world.component.css']
|
|
})
|
|
export class HelloWorldComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit(): void {
|
|
}
|
|
|
|
}
|