Ahmad Shallouf
initialize
1bc149f
raw
history blame contribute delete
246 Bytes
import { Component } from '@angular/core';
@Component({
selector: 'app-dashboard',
standalone: true,
imports: [],
templateUrl: './dashboard.component.html',
styleUrl: './dashboard.component.css'
})
export class DashboardComponent {
}