Spaces:
Sleeping
Sleeping
File size: 246 Bytes
1bc149f |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import { Component } from '@angular/core';
@Component({
selector: 'app-dashboard',
standalone: true,
imports: [],
templateUrl: './dashboard.component.html',
styleUrl: './dashboard.component.css'
})
export class DashboardComponent {
}
|