added searchresults component
This commit is contained in:
parent
df8edd4a0f
commit
ed05580176
|
|
@ -0,0 +1 @@
|
|||
<p>searchresults works!</p>
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { Searchresults } from './searchresults';
|
||||
|
||||
describe('Searchresults', () => {
|
||||
let component: Searchresults;
|
||||
let fixture: ComponentFixture<Searchresults>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [Searchresults]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(Searchresults);
|
||||
component = fixture.componentInstance;
|
||||
await fixture.whenStable();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-searchresults',
|
||||
imports: [],
|
||||
templateUrl: './searchresults.html',
|
||||
styleUrl: './searchresults.css',
|
||||
})
|
||||
export class Searchresults {
|
||||
|
||||
}
|
||||
Loading…
Reference in New Issue