2025-02-02 19:59:34 +01:00
|
|
|
import { Component } from '@angular/core';
|
2025-03-05 09:35:29 +01:00
|
|
|
import {AdminOverviewComponent} from "@app/views/admin-overview/admin-overview.component";
|
2025-02-02 19:59:34 +01:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'app-dashboard',
|
2025-03-05 09:35:29 +01:00
|
|
|
imports: [
|
|
|
|
AdminOverviewComponent
|
|
|
|
],
|
2025-02-02 19:59:34 +01:00
|
|
|
templateUrl: './dashboard.component.html',
|
|
|
|
styleUrl: './dashboard.component.scss'
|
|
|
|
})
|
|
|
|
export class DashboardComponent {
|
|
|
|
|
|
|
|
}
|