diff options
| author | sowgro <tpoke.ferrari@gmail.com> | 2025-02-23 15:33:26 -0500 | 
|---|---|---|
| committer | sowgro <tpoke.ferrari@gmail.com> | 2025-02-23 15:33:26 -0500 | 
| commit | 1a46e367e2774bf31acd46bf088c29777c6c7f04 (patch) | |
| tree | f85a1f1007f34033562c8c3018fa176409b1f4c7 /ufund-ui/src/app/funding-basket | |
| parent | 02dbd629b932477609fd64bae0a3bd8fea1eec39 (diff) | |
| download | JellySolutions-1a46e367e2774bf31acd46bf088c29777c6c7f04.tar.gz JellySolutions-1a46e367e2774bf31acd46bf088c29777c6c7f04.tar.bz2 JellySolutions-1a46e367e2774bf31acd46bf088c29777c6c7f04.zip  | |
Create components
Diffstat (limited to '')
4 files changed, 35 insertions, 0 deletions
diff --git a/ufund-ui/src/app/funding-basket/funding-basket.component.css b/ufund-ui/src/app/funding-basket/funding-basket.component.css new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/ufund-ui/src/app/funding-basket/funding-basket.component.css diff --git a/ufund-ui/src/app/funding-basket/funding-basket.component.html b/ufund-ui/src/app/funding-basket/funding-basket.component.html new file mode 100644 index 0000000..3fb2b5b --- /dev/null +++ b/ufund-ui/src/app/funding-basket/funding-basket.component.html @@ -0,0 +1 @@ +<p>funding-basket works!</p> diff --git a/ufund-ui/src/app/funding-basket/funding-basket.component.spec.ts b/ufund-ui/src/app/funding-basket/funding-basket.component.spec.ts new file mode 100644 index 0000000..1cdd9d2 --- /dev/null +++ b/ufund-ui/src/app/funding-basket/funding-basket.component.spec.ts @@ -0,0 +1,23 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { FundingBasketComponent } from './funding-basket.component'; + +describe('FundingBasketComponent', () => { +  let component: FundingBasketComponent; +  let fixture: ComponentFixture<FundingBasketComponent>; + +  beforeEach(async () => { +    await TestBed.configureTestingModule({ +      declarations: [FundingBasketComponent] +    }) +    .compileComponents(); + +    fixture = TestBed.createComponent(FundingBasketComponent); +    component = fixture.componentInstance; +    fixture.detectChanges(); +  }); + +  it('should create', () => { +    expect(component).toBeTruthy(); +  }); +}); diff --git a/ufund-ui/src/app/funding-basket/funding-basket.component.ts b/ufund-ui/src/app/funding-basket/funding-basket.component.ts new file mode 100644 index 0000000..8b12306 --- /dev/null +++ b/ufund-ui/src/app/funding-basket/funding-basket.component.ts @@ -0,0 +1,11 @@ +import { Component } from '@angular/core'; + +@Component({ +  selector: 'app-funding-basket', +  standalone: false, +  templateUrl: './funding-basket.component.html', +  styleUrl: './funding-basket.component.css' +}) +export class FundingBasketComponent { + +}  | 
