mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-02-18 14:08:07 +01:00
13 lines
203 B
TypeScript
13 lines
203 B
TypeScript
import {Component} from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'dashboard',
|
|
styleUrls: ['./dashboard.scss'],
|
|
templateUrl: './dashboard.html'
|
|
})
|
|
export class Dashboard {
|
|
|
|
constructor() {
|
|
}
|
|
|
|
}
|