From 8a2d6c332a089c2dbb7351514499e16f343959ff Mon Sep 17 00:00:00 2001 From: sowgro Date: Wed, 26 Feb 2025 20:41:35 -0500 Subject: Start services and organize project --- .../components/need-list/need-list.component.css | 0 .../components/need-list/need-list.component.html | 1 + .../need-list/need-list.component.spec.ts | 23 ++++++++++++++++++++++ .../components/need-list/need-list.component.ts | 11 +++++++++++ 4 files changed, 35 insertions(+) create mode 100644 ufund-ui/src/app/components/need-list/need-list.component.css create mode 100644 ufund-ui/src/app/components/need-list/need-list.component.html create mode 100644 ufund-ui/src/app/components/need-list/need-list.component.spec.ts create mode 100644 ufund-ui/src/app/components/need-list/need-list.component.ts (limited to 'ufund-ui/src/app/components/need-list') diff --git a/ufund-ui/src/app/components/need-list/need-list.component.css b/ufund-ui/src/app/components/need-list/need-list.component.css new file mode 100644 index 0000000..e69de29 diff --git a/ufund-ui/src/app/components/need-list/need-list.component.html b/ufund-ui/src/app/components/need-list/need-list.component.html new file mode 100644 index 0000000..d366ee6 --- /dev/null +++ b/ufund-ui/src/app/components/need-list/need-list.component.html @@ -0,0 +1 @@ +

need-list works!

diff --git a/ufund-ui/src/app/components/need-list/need-list.component.spec.ts b/ufund-ui/src/app/components/need-list/need-list.component.spec.ts new file mode 100644 index 0000000..f9b7830 --- /dev/null +++ b/ufund-ui/src/app/components/need-list/need-list.component.spec.ts @@ -0,0 +1,23 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { NeedListComponent } from './need-list.component'; + +describe('NeedListComponent', () => { + let component: NeedListComponent; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [NeedListComponent] + }) + .compileComponents(); + + fixture = TestBed.createComponent(NeedListComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/ufund-ui/src/app/components/need-list/need-list.component.ts b/ufund-ui/src/app/components/need-list/need-list.component.ts new file mode 100644 index 0000000..61ed089 --- /dev/null +++ b/ufund-ui/src/app/components/need-list/need-list.component.ts @@ -0,0 +1,11 @@ +import { Component } from '@angular/core'; + +@Component({ + selector: 'app-need-list', + standalone: false, + templateUrl: './need-list.component.html', + styleUrl: './need-list.component.css' +}) +export class NeedListComponent { + +} -- cgit v1.2.3