This commit is contained in:
Chris Chen
2024-03-21 17:47:13 -07:00
parent 6301d6008b
commit b46392bc41
107 changed files with 4606 additions and 228 deletions
@@ -0,0 +1 @@
<p>mob-combat-info works!</p>
@@ -0,0 +1,25 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { MobCombatInfoComponent } from './mob-combat-info.component';
describe('MobCombatInfoComponent', () => {
let component: MobCombatInfoComponent;
let fixture: ComponentFixture<MobCombatInfoComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ MobCombatInfoComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(MobCombatInfoComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
@@ -0,0 +1,15 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'ngx-mob-combat-info',
templateUrl: './mob-combat-info.component.html',
styleUrls: ['./mob-combat-info.component.scss']
})
export class MobCombatInfoComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}