diff --git a/src/app/cargar-productos/cargar-productos.component.html b/src/app/cargar-productos/cargar-productos.component.html
new file mode 100644
index 0000000..8ad8063
--- /dev/null
+++ b/src/app/cargar-productos/cargar-productos.component.html
@@ -0,0 +1,8 @@
+
\ No newline at end of file
diff --git a/src/app/cargar-productos/cargar-productos.component.scss b/src/app/cargar-productos/cargar-productos.component.scss
new file mode 100644
index 0000000..e69de29
diff --git a/src/app/cargar-productos/cargar-productos.component.spec.ts b/src/app/cargar-productos/cargar-productos.component.spec.ts
new file mode 100644
index 0000000..4d90e34
--- /dev/null
+++ b/src/app/cargar-productos/cargar-productos.component.spec.ts
@@ -0,0 +1,25 @@
+import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { CargarProductosComponent } from './cargar-productos.component';
+
+describe('CargarProductosComponent', () => {
+ let component: CargarProductosComponent;
+ let fixture: ComponentFixture;
+
+ beforeEach(async(() => {
+ TestBed.configureTestingModule({
+ declarations: [ CargarProductosComponent ]
+ })
+ .compileComponents();
+ }));
+
+ beforeEach(() => {
+ fixture = TestBed.createComponent(CargarProductosComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});
diff --git a/src/app/cargar-productos/cargar-productos.component.ts b/src/app/cargar-productos/cargar-productos.component.ts
new file mode 100644
index 0000000..3e2fb01
--- /dev/null
+++ b/src/app/cargar-productos/cargar-productos.component.ts
@@ -0,0 +1,15 @@
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+ selector: 'app-cargar-productos',
+ templateUrl: './cargar-productos.component.html',
+ styleUrls: ['./cargar-productos.component.scss']
+})
+export class CargarProductosComponent implements OnInit {
+
+ constructor() { }
+
+ ngOnInit() {
+ }
+
+}