mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2025-04-19 15:29:18 +00:00
16 lines
287 B
TypeScript
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 {
|
|
}
|
|
|
|
}
|