diff --git a/src/app/components/market-messages/market-messages.component.html b/src/app/components/market-messages/market-messages.component.html
new file mode 100644
index 0000000..d4506a9
--- /dev/null
+++ b/src/app/components/market-messages/market-messages.component.html
@@ -0,0 +1,3 @@
+
+ market-messages works!
+
diff --git a/src/app/components/market-messages/market-messages.component.scss b/src/app/components/market-messages/market-messages.component.scss
new file mode 100644
index 0000000..e69de29
diff --git a/src/app/components/market-messages/market-messages.component.spec.ts b/src/app/components/market-messages/market-messages.component.spec.ts
new file mode 100644
index 0000000..1e524e8
--- /dev/null
+++ b/src/app/components/market-messages/market-messages.component.spec.ts
@@ -0,0 +1,24 @@
+import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
+import { IonicModule } from '@ionic/angular';
+
+import { MarketMessagesComponent } from './market-messages.component';
+
+describe('MarketMessagesComponent', () => {
+ let component: MarketMessagesComponent;
+ let fixture: ComponentFixture;
+
+ beforeEach(waitForAsync(() => {
+ TestBed.configureTestingModule({
+ declarations: [ MarketMessagesComponent ],
+ imports: [IonicModule.forRoot()]
+ }).compileComponents();
+
+ fixture = TestBed.createComponent(MarketMessagesComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ }));
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});
diff --git a/src/app/components/market-messages/market-messages.component.ts b/src/app/components/market-messages/market-messages.component.ts
new file mode 100644
index 0000000..41d0d90
--- /dev/null
+++ b/src/app/components/market-messages/market-messages.component.ts
@@ -0,0 +1,14 @@
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+ selector: 'app-market-messages',
+ templateUrl: './market-messages.component.html',
+ styleUrls: ['./market-messages.component.scss'],
+})
+export class MarketMessagesComponent implements OnInit {
+
+ constructor() { }
+
+ ngOnInit() {}
+
+}
diff --git a/src/app/pages/marketdetail/marketdetail.module.ts b/src/app/pages/marketdetail/marketdetail.module.ts
index 415bb40..9ebf29f 100644
--- a/src/app/pages/marketdetail/marketdetail.module.ts
+++ b/src/app/pages/marketdetail/marketdetail.module.ts
@@ -7,6 +7,7 @@ import { IonicModule } from '@ionic/angular';
import { MarketdetailPageRoutingModule } from './marketdetail-routing.module';
import { MarketdetailPage } from './marketdetail.page';
+import {MarketMessagesComponent} from "../../components/market-messages/market-messages.component";
@NgModule({
imports: [
@@ -15,6 +16,6 @@ import { MarketdetailPage } from './marketdetail.page';
IonicModule,
MarketdetailPageRoutingModule
],
- declarations: [MarketdetailPage]
+ declarations: [MarketdetailPage,MarketMessagesComponent]
})
export class MarketdetailPageModule {}
diff --git a/src/app/pages/marketdetail/marketdetail.page.html b/src/app/pages/marketdetail/marketdetail.page.html
index 91ed920..bcc2f90 100644
--- a/src/app/pages/marketdetail/marketdetail.page.html
+++ b/src/app/pages/marketdetail/marketdetail.page.html
@@ -63,27 +63,30 @@
-
{{jobData.offer_code}}
+
+
{{jobData.offer_code}}
-
-
-
-
-
-
Expires
-
{{jobData.expire}}
+
+
+
+
+
+ Expires
+ {{jobData.expire}}
+
+
-
+
+
Description
+
{{jobData.job_description}}
+
+
+
Delivery Details
+
{{jobData.description}}
+
-
Description
-
{{jobData.job_description}}
-
-
-
Delivery Details
-
{{jobData.description}}
-
@@ -144,7 +147,8 @@
-
+
+