Files
blog-frontEnd/src/app/components/footer/footer.component.ts
2021-03-12 16:48:27 +08:00

21 lines
495 B
TypeScript

import {Component, OnInit} from '@angular/core';
import {ComponentStateService} from '../../services/component-state.service';
@Component({
selector: 'app-footer',
templateUrl: './footer.component.html',
styleUrls: ['./footer.component.less']
})
export class FooterComponent implements OnInit {
readonly gName: string = '何梦幻';
readonly bName: string = '郑海';
constructor(public componentStateService: ComponentStateService) {
}
ngOnInit() {
}
}