This repository has been archived on 2022-08-25. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Frontend/src/app/header/header.component.ts
Felix bbff4088cc Main structure
+ BG Color
+ Fonts
2020-12-24 14:58:51 +01:00

16 lines
275 B
TypeScript

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