Betterzon/Frontend/src/app/components/copyright/copyright.component.ts
2021-06-07 09:58:36 +02:00

16 lines
287 B
TypeScript

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