aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/need-list
diff options
context:
space:
mode:
authorsowgro <tpoke.ferrari@gmail.com>2025-02-23 15:33:26 -0500
committersowgro <tpoke.ferrari@gmail.com>2025-02-23 15:33:26 -0500
commit1a46e367e2774bf31acd46bf088c29777c6c7f04 (patch)
treef85a1f1007f34033562c8c3018fa176409b1f4c7 /ufund-ui/src/app/need-list
parent02dbd629b932477609fd64bae0a3bd8fea1eec39 (diff)
downloadJellySolutions-1a46e367e2774bf31acd46bf088c29777c6c7f04.tar.gz
JellySolutions-1a46e367e2774bf31acd46bf088c29777c6c7f04.tar.bz2
JellySolutions-1a46e367e2774bf31acd46bf088c29777c6c7f04.zip
Create components
Diffstat (limited to 'ufund-ui/src/app/need-list')
-rw-r--r--ufund-ui/src/app/need-list/need-list.component.css0
-rw-r--r--ufund-ui/src/app/need-list/need-list.component.html1
-rw-r--r--ufund-ui/src/app/need-list/need-list.component.spec.ts23
-rw-r--r--ufund-ui/src/app/need-list/need-list.component.ts11
4 files changed, 35 insertions, 0 deletions
diff --git a/ufund-ui/src/app/need-list/need-list.component.css b/ufund-ui/src/app/need-list/need-list.component.css
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/ufund-ui/src/app/need-list/need-list.component.css
diff --git a/ufund-ui/src/app/need-list/need-list.component.html b/ufund-ui/src/app/need-list/need-list.component.html
new file mode 100644
index 0000000..d366ee6
--- /dev/null
+++ b/ufund-ui/src/app/need-list/need-list.component.html
@@ -0,0 +1 @@
+<p>need-list works!</p>
diff --git a/ufund-ui/src/app/need-list/need-list.component.spec.ts b/ufund-ui/src/app/need-list/need-list.component.spec.ts
new file mode 100644
index 0000000..f9b7830
--- /dev/null
+++ b/ufund-ui/src/app/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<NeedListComponent>;
+
+ 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/need-list/need-list.component.ts b/ufund-ui/src/app/need-list/need-list.component.ts
new file mode 100644
index 0000000..61ed089
--- /dev/null
+++ b/ufund-ui/src/app/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 {
+
+}