diff --git a/src/app/carousel/carousel.component.html b/src/app/carousel/carousel.component.html new file mode 100644 index 0000000..396440c --- /dev/null +++ b/src/app/carousel/carousel.component.html @@ -0,0 +1,28 @@ + \ No newline at end of file diff --git a/src/app/carousel/carousel.component.scss b/src/app/carousel/carousel.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/app/carousel/carousel.component.spec.ts b/src/app/carousel/carousel.component.spec.ts new file mode 100644 index 0000000..4d935d7 --- /dev/null +++ b/src/app/carousel/carousel.component.spec.ts @@ -0,0 +1,25 @@ +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/carousel/carousel.component.ts b/src/app/carousel/carousel.component.ts new file mode 100644 index 0000000..c05dba6 --- /dev/null +++ b/src/app/carousel/carousel.component.ts @@ -0,0 +1,15 @@ +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() { + } + +}