diff --git a/Frontend/src/app/app.module.ts b/Frontend/src/app/app.module.ts
index ac7911e..3519c4d 100644
--- a/Frontend/src/app/app.module.ts
+++ b/Frontend/src/app/app.module.ts
@@ -3,11 +3,13 @@ import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { HelloWorldComponent } from './hello-world/hello-world.component';
+import { ProductListComponentComponent } from './product-list-component/product-list-component.component';
@NgModule({
declarations: [
AppComponent,
- HelloWorldComponent
+ HelloWorldComponent,
+ ProductListComponentComponent
],
imports: [
BrowserModule
diff --git a/Frontend/src/app/product-list-component/product-list-component.component.css b/Frontend/src/app/product-list-component/product-list-component.component.css
new file mode 100644
index 0000000..e69de29
diff --git a/Frontend/src/app/product-list-component/product-list-component.component.html b/Frontend/src/app/product-list-component/product-list-component.component.html
new file mode 100644
index 0000000..08e7f7f
--- /dev/null
+++ b/Frontend/src/app/product-list-component/product-list-component.component.html
@@ -0,0 +1,2 @@
+
+
diff --git a/Frontend/src/app/product-list-component/product-list-component.component.spec.ts b/Frontend/src/app/product-list-component/product-list-component.component.spec.ts
new file mode 100644
index 0000000..444a138
--- /dev/null
+++ b/Frontend/src/app/product-list-component/product-list-component.component.spec.ts
@@ -0,0 +1,25 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { ProductListComponentComponent } from './product-list-component.component';
+
+describe('ProductListComponentComponent', () => {
+ let component: ProductListComponentComponent;
+ let fixture: ComponentFixture;
+
+ beforeEach(async () => {
+ await TestBed.configureTestingModule({
+ declarations: [ ProductListComponentComponent ]
+ })
+ .compileComponents();
+ });
+
+ beforeEach(() => {
+ fixture = TestBed.createComponent(ProductListComponentComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});
diff --git a/Frontend/src/app/product-list-component/product-list-component.component.ts b/Frontend/src/app/product-list-component/product-list-component.component.ts
new file mode 100644
index 0000000..256215b
--- /dev/null
+++ b/Frontend/src/app/product-list-component/product-list-component.component.ts
@@ -0,0 +1,15 @@
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+ selector: 'app-product-list-component',
+ templateUrl: './product-list-component.component.html',
+ styleUrls: ['./product-list-component.component.css']
+})
+export class ProductListComponentComponent implements OnInit {
+
+ constructor() { }
+
+ ngOnInit(): void {
+ }
+
+}