mirror of
				https://github.com/Mueller-Patrick/Betterzon.git
				synced 2025-10-31 16:55:49 +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 {
 | |
|   }
 | |
| 
 | |
| }
 |