From bca5a09646f58870fd5ee7d63b76fa15747dad9d Mon Sep 17 00:00:00 2001 From: mpuebla Date: Fri, 16 Aug 2019 12:24:07 -0300 Subject: [PATCH] Eliminado componente carousel. --- src/app/app.module.ts | 2 -- .../components/carousel/carousel.component.html | 28 ---------------------- .../components/carousel/carousel.component.scss | 0 .../components/carousel/carousel.component.spec.ts | 25 ------------------- src/app/components/carousel/carousel.component.ts | 15 ------------ 5 files changed, 70 deletions(-) delete mode 100644 src/app/components/carousel/carousel.component.html delete mode 100644 src/app/components/carousel/carousel.component.scss delete mode 100644 src/app/components/carousel/carousel.component.spec.ts delete mode 100644 src/app/components/carousel/carousel.component.ts diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 65aaa96..fbd0cc7 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -12,7 +12,6 @@ import { PopoverModule } from 'ngx-bootstrap/popover'; import { AppComponent } from './app.component'; import { HeaderComponent } from './components/header/header.component'; import { SidebarComponent } from './components/sidebar/sidebar.component'; -import { CarouselComponent } from './components/carousel/carousel.component'; import { HomeComponent } from './components/home/home.component'; import { InicioComponent } from './components/inicio/inicio.component'; import { BusquedaProductosComponent } from './components/busqueda-productos/busqueda-productos.component'; @@ -29,7 +28,6 @@ import { PagoComponent } from './components/pago/pago.component'; AppComponent, HeaderComponent, SidebarComponent, - CarouselComponent, HomeComponent, InicioComponent, BusquedaProductosComponent, diff --git a/src/app/components/carousel/carousel.component.html b/src/app/components/carousel/carousel.component.html deleted file mode 100644 index 396440c..0000000 --- a/src/app/components/carousel/carousel.component.html +++ /dev/null @@ -1,28 +0,0 @@ - \ No newline at end of file diff --git a/src/app/components/carousel/carousel.component.scss b/src/app/components/carousel/carousel.component.scss deleted file mode 100644 index e69de29..0000000 diff --git a/src/app/components/carousel/carousel.component.spec.ts b/src/app/components/carousel/carousel.component.spec.ts deleted file mode 100644 index 4d935d7..0000000 --- a/src/app/components/carousel/carousel.component.spec.ts +++ /dev/null @@ -1,25 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { CarouselComponent } from './carousel.component'; - -describe('CarouselComponent', () => { - let component: CarouselComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [ CarouselComponent ] - }) - .compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(CarouselComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/src/app/components/carousel/carousel.component.ts b/src/app/components/carousel/carousel.component.ts deleted file mode 100644 index c05dba6..0000000 --- a/src/app/components/carousel/carousel.component.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { Component, OnInit } from '@angular/core'; - -@Component({ - selector: 'app-carousel', - templateUrl: './carousel.component.html', - styleUrls: ['./carousel.component.scss'] -}) -export class CarouselComponent implements OnInit { - - constructor() { } - - ngOnInit() { - } - -} -- 1.9.1