diff --git a/src/app/modules/seleccion-productos/seleccion-productos-routing.module.ts b/src/app/modules/seleccion-productos/seleccion-productos-routing.module.ts
new file mode 100644
index 0000000..826eaae
--- /dev/null
+++ b/src/app/modules/seleccion-productos/seleccion-productos-routing.module.ts
@@ -0,0 +1,11 @@
+import { NgModule } from '@angular/core';
+import { Routes, RouterModule } from '@angular/router';
+
+
+const routes: Routes = [];
+
+@NgModule({
+ imports: [RouterModule.forChild(routes)],
+ exports: [RouterModule]
+})
+export class SeleccionProductosRoutingModule { }
diff --git a/src/app/modules/seleccion-productos/seleccion-productos.component.html b/src/app/modules/seleccion-productos/seleccion-productos.component.html
new file mode 100644
index 0000000..89e8233
--- /dev/null
+++ b/src/app/modules/seleccion-productos/seleccion-productos.component.html
@@ -0,0 +1 @@
+
seleccion-productos works!
diff --git a/src/app/modules/seleccion-productos/seleccion-productos.component.scss b/src/app/modules/seleccion-productos/seleccion-productos.component.scss
new file mode 100644
index 0000000..e69de29
diff --git a/src/app/modules/seleccion-productos/seleccion-productos.component.spec.ts b/src/app/modules/seleccion-productos/seleccion-productos.component.spec.ts
new file mode 100644
index 0000000..ec32b40
--- /dev/null
+++ b/src/app/modules/seleccion-productos/seleccion-productos.component.spec.ts
@@ -0,0 +1,25 @@
+import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { SeleccionProductosComponent } from './seleccion-productos.component';
+
+describe('SeleccionProductosComponent', () => {
+ let component: SeleccionProductosComponent;
+ let fixture: ComponentFixture;
+
+ beforeEach(async(() => {
+ TestBed.configureTestingModule({
+ declarations: [ SeleccionProductosComponent ]
+ })
+ .compileComponents();
+ }));
+
+ beforeEach(() => {
+ fixture = TestBed.createComponent(SeleccionProductosComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});
diff --git a/src/app/modules/seleccion-productos/seleccion-productos.component.ts b/src/app/modules/seleccion-productos/seleccion-productos.component.ts
new file mode 100644
index 0000000..e5f8cf5
--- /dev/null
+++ b/src/app/modules/seleccion-productos/seleccion-productos.component.ts
@@ -0,0 +1,15 @@
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+ selector: 'app-seleccion-productos',
+ templateUrl: './seleccion-productos.component.html',
+ styleUrls: ['./seleccion-productos.component.scss']
+})
+export class SeleccionProductosComponent implements OnInit {
+
+ constructor() { }
+
+ ngOnInit() {
+ }
+
+}
diff --git a/src/app/modules/seleccion-productos/seleccion-productos.module.ts b/src/app/modules/seleccion-productos/seleccion-productos.module.ts
new file mode 100644
index 0000000..0f01462
--- /dev/null
+++ b/src/app/modules/seleccion-productos/seleccion-productos.module.ts
@@ -0,0 +1,15 @@
+import { NgModule } from '@angular/core';
+import { CommonModule } from '@angular/common';
+
+import { SeleccionProductosRoutingModule } from './seleccion-productos-routing.module';
+import { SeleccionProductosComponent } from './seleccion-productos.component';
+
+
+@NgModule({
+ declarations: [SeleccionProductosComponent],
+ imports: [
+ CommonModule,
+ SeleccionProductosRoutingModule
+ ]
+})
+export class SeleccionProductosModule { }