blob: e83f8408a86f565537f4b1dc121634a43260ca20 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-footer',
templateUrl: './footer.component.html',
styleUrls: ['./footer.component.css']
})
export class FooterComponent implements OnInit {
public version: string = "v0.1";
public licenseUrl: string = "https://github.com/Team-Kaleidoscope/DevHive-Angular/blob/main/LICENSE";
public organizationUrl: string = "https://github.com/Team-Kaleidoscope";
constructor() { }
ngOnInit(): void {
}
}
|