ngx-admin/src/app/pages/dashboard/dashboard.component.ts

14 lines
203 B
TypeScript
Raw Normal View History

import {Component} from '@angular/core';
2016-04-29 21:06:45 +03:00
2016-04-21 20:34:07 +03:00
@Component({
2016-04-29 17:27:19 +03:00
selector: 'dashboard',
styleUrls: ['./dashboard.scss'],
templateUrl: './dashboard.html'
2016-04-21 20:34:07 +03:00
})
export class Dashboard {
2016-04-29 17:27:19 +03:00
constructor() {
}
2016-04-21 20:34:07 +03:00
2016-04-29 17:27:19 +03:00
}