aboutsummaryrefslogtreecommitdiff
path: root/src/app/app-shell
diff options
context:
space:
mode:
authorKamen Mladenov <kamen.d.mladenov@protonmail.com>2021-04-09 19:55:59 +0300
committerGitHub <noreply@github.com>2021-04-09 19:55:59 +0300
commitf849e37ccdd6fd48f83119a3b3b65cdd8b765dc3 (patch)
tree83b88a773bb7dc053bb3aced35bce302264ec925 /src/app/app-shell
parentbcd88af53b1a920d728ec98b45daa9ac2e2c0917 (diff)
parentc13889759d70687de6833c505221c203f65fedb8 (diff)
downloadDevHive-Angular-f849e37ccdd6fd48f83119a3b3b65cdd8b765dc3.tar
DevHive-Angular-f849e37ccdd6fd48f83119a3b3b65cdd8b765dc3.tar.gz
DevHive-Angular-f849e37ccdd6fd48f83119a3b3b65cdd8b765dc3.zip
Merge pull request #7 from Team-Kaleidoscope/devHEADv0.2main
Second Stage: Complete
Diffstat (limited to 'src/app/app-shell')
-rw-r--r--src/app/app-shell/app-shell.component.css0
-rw-r--r--src/app/app-shell/app-shell.component.html1
-rw-r--r--src/app/app-shell/app-shell.component.spec.ts25
-rw-r--r--src/app/app-shell/app-shell.component.ts15
4 files changed, 0 insertions, 41 deletions
diff --git a/src/app/app-shell/app-shell.component.css b/src/app/app-shell/app-shell.component.css
deleted file mode 100644
index e69de29..0000000
--- a/src/app/app-shell/app-shell.component.css
+++ /dev/null
diff --git a/src/app/app-shell/app-shell.component.html b/src/app/app-shell/app-shell.component.html
deleted file mode 100644
index b5f713a..0000000
--- a/src/app/app-shell/app-shell.component.html
+++ /dev/null
@@ -1 +0,0 @@
-<p>app-shell works!</p>
diff --git a/src/app/app-shell/app-shell.component.spec.ts b/src/app/app-shell/app-shell.component.spec.ts
deleted file mode 100644
index 2c4fabc..0000000
--- a/src/app/app-shell/app-shell.component.spec.ts
+++ /dev/null
@@ -1,25 +0,0 @@
-import { ComponentFixture, TestBed } from '@angular/core/testing';
-
-import { AppShellComponent } from './app-shell.component';
-
-describe('AppShellComponent', () => {
- let component: AppShellComponent;
- let fixture: ComponentFixture<AppShellComponent>;
-
- beforeEach(async () => {
- await TestBed.configureTestingModule({
- declarations: [ AppShellComponent ]
- })
- .compileComponents();
- });
-
- beforeEach(() => {
- fixture = TestBed.createComponent(AppShellComponent);
- component = fixture.componentInstance;
- fixture.detectChanges();
- });
-
- it('should create', () => {
- expect(component).toBeTruthy();
- });
-});
diff --git a/src/app/app-shell/app-shell.component.ts b/src/app/app-shell/app-shell.component.ts
deleted file mode 100644
index f1bca89..0000000
--- a/src/app/app-shell/app-shell.component.ts
+++ /dev/null
@@ -1,15 +0,0 @@
-import { Component, OnInit } from '@angular/core';
-
-@Component({
- selector: 'app-app-shell',
- templateUrl: './app-shell.component.html',
- styleUrls: ['./app-shell.component.css']
-})
-export class AppShellComponent implements OnInit {
-
- constructor() { }
-
- ngOnInit(): void {
- }
-
-}