diff --git a/src/app/modules/seleccion-articulos/seleccion-articulos.module.ts b/src/app/modules/seleccion-articulos/seleccion-articulos.module.ts
index 7427f95..b43f34c 100644
--- a/src/app/modules/seleccion-articulos/seleccion-articulos.module.ts
+++ b/src/app/modules/seleccion-articulos/seleccion-articulos.module.ts
@@ -1,12 +1,13 @@
-import { NgModule } from "@angular/core";
-import { CommonModule } from "@angular/common";
+import { NgModule } from '@angular/core';
+import { CommonModule } from '@angular/common';
-import { SeleccionArticulosRoutingModule } from "./seleccion-articulos-routing.module";
-import { SeleccionArticulosComponent } from "./seleccion-articulos.component";
-import { HeaderPublicidadComponent } from "src/app/shared/header-publicidad/header-publicidad.component";
+import { SeleccionArticulosRoutingModule } from './seleccion-articulos-routing.module';
+import { SeleccionArticulosComponent } from './seleccion-articulos.component';
+import { HeaderPublicidadComponent } from 'src/app/shared/header-publicidad/header-publicidad.component';
@NgModule({
declarations: [SeleccionArticulosComponent, HeaderPublicidadComponent],
- imports: [CommonModule, SeleccionArticulosRoutingModule]
+ imports: [CommonModule, SeleccionArticulosRoutingModule],
+ exports: [HeaderPublicidadComponent]
})
-export class SeleccionArticulosModule {}
+export class SeleccionArticulosModule { }
diff --git a/src/app/shared/footer/footer.component.html b/src/app/shared/footer/footer.component.html
new file mode 100644
index 0000000..d495f35
--- /dev/null
+++ b/src/app/shared/footer/footer.component.html
@@ -0,0 +1,20 @@
+
+
+
+
ESTAMOS PARA AYUDARTE
+
+

+
+
+
+
+
+
VOLVER
+
+

+
+
+
+
diff --git a/src/app/shared/footer/footer.component.scss b/src/app/shared/footer/footer.component.scss
new file mode 100644
index 0000000..e69de29
diff --git a/src/app/shared/footer/footer.component.spec.ts b/src/app/shared/footer/footer.component.spec.ts
new file mode 100644
index 0000000..2ca6c45
--- /dev/null
+++ b/src/app/shared/footer/footer.component.spec.ts
@@ -0,0 +1,25 @@
+import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { FooterComponent } from './footer.component';
+
+describe('FooterComponent', () => {
+ let component: FooterComponent;
+ let fixture: ComponentFixture
;
+
+ beforeEach(async(() => {
+ TestBed.configureTestingModule({
+ declarations: [ FooterComponent ]
+ })
+ .compileComponents();
+ }));
+
+ beforeEach(() => {
+ fixture = TestBed.createComponent(FooterComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});
diff --git a/src/app/shared/footer/footer.component.ts b/src/app/shared/footer/footer.component.ts
new file mode 100644
index 0000000..19c0776
--- /dev/null
+++ b/src/app/shared/footer/footer.component.ts
@@ -0,0 +1,17 @@
+import { Component, OnInit } from "@angular/core";
+import { Location } from "@angular/common";
+
+@Component({
+ selector: "app-footer",
+ templateUrl: "./footer.component.html",
+ styleUrls: ["./footer.component.scss"]
+})
+export class FooterComponent implements OnInit {
+ constructor(private location: Location) {}
+
+ ngOnInit() {}
+
+ goBack() {
+ this.location.back();
+ }
+}
diff --git a/src/app/shared/header-publicidad/header-publicidad.component.html b/src/app/shared/header-publicidad/header-publicidad.component.html
new file mode 100644
index 0000000..6fced1d
--- /dev/null
+++ b/src/app/shared/header-publicidad/header-publicidad.component.html
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/src/app/shared/header-publicidad/header-publicidad.component.scss b/src/app/shared/header-publicidad/header-publicidad.component.scss
new file mode 100644
index 0000000..e69de29
diff --git a/src/app/shared/header-publicidad/header-publicidad.component.spec.ts b/src/app/shared/header-publicidad/header-publicidad.component.spec.ts
new file mode 100644
index 0000000..fb6f71d
--- /dev/null
+++ b/src/app/shared/header-publicidad/header-publicidad.component.spec.ts
@@ -0,0 +1,25 @@
+import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { HeaderPublicidadComponent } from './header-publicidad.component';
+
+describe('HeaderPublicidadComponent', () => {
+ let component: HeaderPublicidadComponent;
+ let fixture: ComponentFixture;
+
+ beforeEach(async(() => {
+ TestBed.configureTestingModule({
+ declarations: [ HeaderPublicidadComponent ]
+ })
+ .compileComponents();
+ }));
+
+ beforeEach(() => {
+ fixture = TestBed.createComponent(HeaderPublicidadComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});
diff --git a/src/app/shared/header-publicidad/header-publicidad.component.ts b/src/app/shared/header-publicidad/header-publicidad.component.ts
new file mode 100644
index 0000000..78ae4cd
--- /dev/null
+++ b/src/app/shared/header-publicidad/header-publicidad.component.ts
@@ -0,0 +1,15 @@
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+ selector: 'app-header-publicidad',
+ templateUrl: './header-publicidad.component.html',
+ styleUrls: ['./header-publicidad.component.scss']
+})
+export class HeaderPublicidadComponent implements OnInit {
+
+ constructor() { }
+
+ ngOnInit() {
+ }
+
+}