diff --git a/src/app/components/confirmacion-carrito/confirmacion-carrito.component.html b/src/app/components/confirmacion-carrito/confirmacion-carrito.component.html
new file mode 100644
index 0000000..4333b74
--- /dev/null
+++ b/src/app/components/confirmacion-carrito/confirmacion-carrito.component.html
@@ -0,0 +1,48 @@
+
+
+
+
+
+
+
+
+
+
Mi Compra
+
+
+
¿Desea finalizar su compra?
+ Por favor, controle y confirme su compra.
+
+
+
+
TOTAL: $553
+
+
+
+
+
+
+
diff --git a/src/app/components/confirmacion-carrito/confirmacion-carrito.component.scss b/src/app/components/confirmacion-carrito/confirmacion-carrito.component.scss
new file mode 100644
index 0000000..e69de29
diff --git a/src/app/components/confirmacion-carrito/confirmacion-carrito.component.spec.ts b/src/app/components/confirmacion-carrito/confirmacion-carrito.component.spec.ts
new file mode 100644
index 0000000..06954b5
--- /dev/null
+++ b/src/app/components/confirmacion-carrito/confirmacion-carrito.component.spec.ts
@@ -0,0 +1,25 @@
+import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { ConfirmacionCarritoComponent } from './confirmacion-carrito.component';
+
+describe('ConfirmacionCarritoComponent', () => {
+ let component: ConfirmacionCarritoComponent;
+ let fixture: ComponentFixture;
+
+ beforeEach(async(() => {
+ TestBed.configureTestingModule({
+ declarations: [ ConfirmacionCarritoComponent ]
+ })
+ .compileComponents();
+ }));
+
+ beforeEach(() => {
+ fixture = TestBed.createComponent(ConfirmacionCarritoComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});
diff --git a/src/app/components/confirmacion-carrito/confirmacion-carrito.component.ts b/src/app/components/confirmacion-carrito/confirmacion-carrito.component.ts
new file mode 100644
index 0000000..3cbc05a
--- /dev/null
+++ b/src/app/components/confirmacion-carrito/confirmacion-carrito.component.ts
@@ -0,0 +1,16 @@
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+ selector: 'app-confirmacion-carrito',
+ templateUrl: './confirmacion-carrito.component.html',
+ styleUrls: ['./confirmacion-carrito.component.scss']
+})
+export class ConfirmacionCarritoComponent implements OnInit {
+
+ productos = [{}, {}, {}]
+ constructor() { }
+
+ ngOnInit() {
+ }
+
+}