added new component

This commit is contained in:
Chneemann 2024-04-16 20:52:06 +02:00
parent e3caed60fc
commit be1a50df4e
5 changed files with 37 additions and 0 deletions

View file

@ -62,6 +62,7 @@
id="search-assigned" id="search-assigned"
class="search-assigned" class="search-assigned"
name="search" name="search"
placeholder="Search..."
type="text" type="text"
[(ngModel)]="searchValue" [(ngModel)]="searchValue"
(input)="searchTask()" (input)="searchTask()"

View file

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

View file

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

View file

@ -0,0 +1,12 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-details',
standalone: true,
imports: [],
templateUrl: './details.component.html',
styleUrl: './details.component.scss'
})
export class DetailsComponent {
}