Files
blog-frontEnd/src/app/components/footer/footer.component.ts
2020-09-13 12:22:03 +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 {
constructor(public componentStateService: ComponentStateService) {
}
readonly gName: string = '何梦幻';
readonly bName: string = '郑海';
ngOnInit() {
}
}