datasurvey/src/main/webapp/app/entities/dashboard/dashboard-user/dashboard-user.component.ts

13 lines
302 B
TypeScript
Raw Normal View History

2021-08-10 01:07:19 +00:00
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'jhi-dashboard-user',
templateUrl: './dashboard-user.component.html',
styleUrls: ['./dashboard-user.component.scss'],
})
export class DashboardUserComponent implements OnInit {
constructor() {}
ngOnInit(): void {}
}