wahlrecht-frontend/src/app/dashboard/dashboard.component.ts

16 lines
281 B
TypeScript

import {Component, OnInit} from '@angular/core';
@Component({
selector: 'app-dashboard',
templateUrl: './dashboard.component.html',
styleUrls: ['./dashboard.component.scss']
})
export class DashboardComponent implements OnInit {
constructor() {
}
ngOnInit() {
}
}