This commit is contained in:
小海
2020-04-23 21:59:32 +08:00
parent caad40170a
commit 2bcca393e1
44 changed files with 485 additions and 1 deletions

View File

@@ -0,0 +1 @@
<p>admin-comment works!</p>

View File

@@ -0,0 +1,25 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { AdminCommentComponent } from './admin-comment.component';
describe('AdminCommentComponent', () => {
let component: AdminCommentComponent;
let fixture: ComponentFixture<AdminCommentComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ AdminCommentComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(AdminCommentComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View File

@@ -0,0 +1,15 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-admin-comment',
templateUrl: './admin-comment.component.html',
styleUrls: ['./admin-comment.component.less']
})
export class AdminCommentComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}