mirror of
				https://github.com/avatao-content/frontend-tutorial-framework
				synced 2025-10-31 21:02:56 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			279 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			279 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { Component, OnInit } from '@angular/core';
 | |
| 
 | |
| @Component({
 | |
|   selector: 'app-dashboard',
 | |
|   templateUrl: './dashboard.component.html',
 | |
|   styleUrls: ['./dashboard.component.scss']
 | |
| })
 | |
| export class DashboardComponent implements OnInit {
 | |
|   constructor() {}
 | |
| 
 | |
|   ngOnInit() {
 | |
|   }
 | |
| }
 |