aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/dashboard
diff options
context:
space:
mode:
authorsowgro <tpoke.ferrari@gmail.com>2025-02-26 20:41:35 -0500
committersowgro <tpoke.ferrari@gmail.com>2025-02-26 20:41:35 -0500
commit8a2d6c332a089c2dbb7351514499e16f343959ff (patch)
tree9451b9a92b8fc43ed88d215fd3b8a63a151f12f7 /ufund-ui/src/app/dashboard
parent04910f9a8e8b30add77852ac2968acdbda834a83 (diff)
downloadJellySolutions-8a2d6c332a089c2dbb7351514499e16f343959ff.tar.gz
JellySolutions-8a2d6c332a089c2dbb7351514499e16f343959ff.tar.bz2
JellySolutions-8a2d6c332a089c2dbb7351514499e16f343959ff.zip
Start services and organize project
Diffstat (limited to 'ufund-ui/src/app/dashboard')
-rw-r--r--ufund-ui/src/app/dashboard/dashboard.component.css0
-rw-r--r--ufund-ui/src/app/dashboard/dashboard.component.html1
-rw-r--r--ufund-ui/src/app/dashboard/dashboard.component.spec.ts23
-rw-r--r--ufund-ui/src/app/dashboard/dashboard.component.ts11
4 files changed, 0 insertions, 35 deletions
diff --git a/ufund-ui/src/app/dashboard/dashboard.component.css b/ufund-ui/src/app/dashboard/dashboard.component.css
deleted file mode 100644
index e69de29..0000000
--- a/ufund-ui/src/app/dashboard/dashboard.component.css
+++ /dev/null
diff --git a/ufund-ui/src/app/dashboard/dashboard.component.html b/ufund-ui/src/app/dashboard/dashboard.component.html
deleted file mode 100644
index 9c5fce9..0000000
--- a/ufund-ui/src/app/dashboard/dashboard.component.html
+++ /dev/null
@@ -1 +0,0 @@
-<p>dashboard works!</p>
diff --git a/ufund-ui/src/app/dashboard/dashboard.component.spec.ts b/ufund-ui/src/app/dashboard/dashboard.component.spec.ts
deleted file mode 100644
index 1a763b8..0000000
--- a/ufund-ui/src/app/dashboard/dashboard.component.spec.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-import { ComponentFixture, TestBed } from '@angular/core/testing';
-
-import { DashboardComponent } from './dashboard.component';
-
-describe('DashboardComponent', () => {
- let component: DashboardComponent;
- let fixture: ComponentFixture<DashboardComponent>;
-
- beforeEach(async () => {
- await TestBed.configureTestingModule({
- declarations: [DashboardComponent]
- })
- .compileComponents();
-
- fixture = TestBed.createComponent(DashboardComponent);
- component = fixture.componentInstance;
- fixture.detectChanges();
- });
-
- it('should create', () => {
- expect(component).toBeTruthy();
- });
-});
diff --git a/ufund-ui/src/app/dashboard/dashboard.component.ts b/ufund-ui/src/app/dashboard/dashboard.component.ts
deleted file mode 100644
index 6da4013..0000000
--- a/ufund-ui/src/app/dashboard/dashboard.component.ts
+++ /dev/null
@@ -1,11 +0,0 @@
-import { Component } from '@angular/core';
-
-@Component({
- selector: 'app-dashboard',
- standalone: false,
- templateUrl: './dashboard.component.html',
- styleUrl: './dashboard.component.css'
-})
-export class DashboardComponent {
-
-}