From 1a46e367e2774bf31acd46bf088c29777c6c7f04 Mon Sep 17 00:00:00 2001 From: sowgro Date: Sun, 23 Feb 2025 15:33:26 -0500 Subject: Create components --- ufund-ui/src/app/login/login.component.css | 0 ufund-ui/src/app/login/login.component.html | 1 + ufund-ui/src/app/login/login.component.spec.ts | 23 +++++++++++++++++++++++ ufund-ui/src/app/login/login.component.ts | 11 +++++++++++ 4 files changed, 35 insertions(+) create mode 100644 ufund-ui/src/app/login/login.component.css create mode 100644 ufund-ui/src/app/login/login.component.html create mode 100644 ufund-ui/src/app/login/login.component.spec.ts create mode 100644 ufund-ui/src/app/login/login.component.ts (limited to 'ufund-ui/src/app/login') diff --git a/ufund-ui/src/app/login/login.component.css b/ufund-ui/src/app/login/login.component.css new file mode 100644 index 0000000..e69de29 diff --git a/ufund-ui/src/app/login/login.component.html b/ufund-ui/src/app/login/login.component.html new file mode 100644 index 0000000..147cfc4 --- /dev/null +++ b/ufund-ui/src/app/login/login.component.html @@ -0,0 +1 @@ +

login works!

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