From b5e0b2fa565d0da6f7e99aa688cc8bf9bc7c1a9c Mon Sep 17 00:00:00 2001 From: Marcelo Puebla Date: Thu, 23 Jan 2020 12:02:31 -0300 Subject: [PATCH] Add Componente sinonimo --- src/app/shared/sinonimo/sinonimo.component.html | 1 + src/app/shared/sinonimo/sinonimo.component.scss | 0 src/app/shared/sinonimo/sinonimo.component.spec.ts | 25 ++++++++++++++++++++++ src/app/shared/sinonimo/sinonimo.component.ts | 15 +++++++++++++ 4 files changed, 41 insertions(+) create mode 100644 src/app/shared/sinonimo/sinonimo.component.html create mode 100644 src/app/shared/sinonimo/sinonimo.component.scss create mode 100644 src/app/shared/sinonimo/sinonimo.component.spec.ts create mode 100644 src/app/shared/sinonimo/sinonimo.component.ts diff --git a/src/app/shared/sinonimo/sinonimo.component.html b/src/app/shared/sinonimo/sinonimo.component.html new file mode 100644 index 0000000..65fde3c --- /dev/null +++ b/src/app/shared/sinonimo/sinonimo.component.html @@ -0,0 +1 @@ +

sinonimo works!

diff --git a/src/app/shared/sinonimo/sinonimo.component.scss b/src/app/shared/sinonimo/sinonimo.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/app/shared/sinonimo/sinonimo.component.spec.ts b/src/app/shared/sinonimo/sinonimo.component.spec.ts new file mode 100644 index 0000000..99d292b --- /dev/null +++ b/src/app/shared/sinonimo/sinonimo.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { SinonimoComponent } from './sinonimo.component'; + +describe('SinonimoComponent', () => { + let component: SinonimoComponent; + let fixture: ComponentFixture; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ SinonimoComponent ] + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(SinonimoComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/shared/sinonimo/sinonimo.component.ts b/src/app/shared/sinonimo/sinonimo.component.ts new file mode 100644 index 0000000..0b7a869 --- /dev/null +++ b/src/app/shared/sinonimo/sinonimo.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-sinonimo', + templateUrl: './sinonimo.component.html', + styleUrls: ['./sinonimo.component.scss'] +}) +export class SinonimoComponent implements OnInit { + + constructor() { } + + ngOnInit() { + } + +} -- 1.9.1