added new component
This commit is contained in:
parent
e3caed60fc
commit
be1a50df4e
5 changed files with 37 additions and 0 deletions
|
|
@ -62,6 +62,7 @@
|
|||
id="search-assigned"
|
||||
class="search-assigned"
|
||||
name="search"
|
||||
placeholder="Search..."
|
||||
type="text"
|
||||
[(ngModel)]="searchValue"
|
||||
(input)="searchTask()"
|
||||
|
|
|
|||
1
src/app/components/board/details/details.component.html
Normal file
1
src/app/components/board/details/details.component.html
Normal file
|
|
@ -0,0 +1 @@
|
|||
<p>details works!</p>
|
||||
0
src/app/components/board/details/details.component.scss
Normal file
0
src/app/components/board/details/details.component.scss
Normal file
23
src/app/components/board/details/details.component.spec.ts
Normal file
23
src/app/components/board/details/details.component.spec.ts
Normal 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();
|
||||
});
|
||||
});
|
||||
12
src/app/components/board/details/details.component.ts
Normal file
12
src/app/components/board/details/details.component.ts
Normal 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 {
|
||||
|
||||
}
|
||||
Loading…
Reference in a new issue