12 lines
238 B
TypeScript
12 lines
238 B
TypeScript
|
import { Component } from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-dashboard',
|
||
|
imports: [],
|
||
|
templateUrl: './dashboard.component.html',
|
||
|
styleUrl: './dashboard.component.scss'
|
||
|
})
|
||
|
export class DashboardComponent {
|
||
|
|
||
|
}
|