Commit 9d908da37d815a37dddcf322bec735f614bab0e4
1 parent
b65dcbc6d8
Exists in
master
Creado popover para los sinonimos.
Showing
4 changed files
with
41 additions
and
0 deletions
Show diff stats
src/app/components/popover-sinonimos/popover-sinonimos.component.html
File was created | 1 | <p>popover-sinonimos works!</p> | |
2 |
src/app/components/popover-sinonimos/popover-sinonimos.component.scss
src/app/components/popover-sinonimos/popover-sinonimos.component.spec.ts
File was created | 1 | import { async, ComponentFixture, TestBed } from '@angular/core/testing'; | |
2 | |||
3 | import { PopoverSinonimosComponent } from './popover-sinonimos.component'; | ||
4 | |||
5 | describe('PopoverSinonimosComponent', () => { | ||
6 | let component: PopoverSinonimosComponent; | ||
7 | let fixture: ComponentFixture<PopoverSinonimosComponent>; | ||
8 | |||
9 | beforeEach(async(() => { | ||
10 | TestBed.configureTestingModule({ | ||
11 | declarations: [ PopoverSinonimosComponent ] | ||
12 | }) | ||
13 | .compileComponents(); | ||
14 | })); | ||
15 | |||
16 | beforeEach(() => { | ||
17 | fixture = TestBed.createComponent(PopoverSinonimosComponent); | ||
18 | component = fixture.componentInstance; | ||
19 | fixture.detectChanges(); | ||
20 | }); | ||
21 | |||
22 | it('should create', () => { | ||
23 | expect(component).toBeTruthy(); | ||
24 | }); | ||
25 | }); | ||
26 |
src/app/components/popover-sinonimos/popover-sinonimos.component.ts
File was created | 1 | import { Component, OnInit } from '@angular/core'; | |
2 | |||
3 | @Component({ | ||
4 | selector: 'app-popover-sinonimos', | ||
5 | templateUrl: './popover-sinonimos.component.html', | ||
6 | styleUrls: ['./popover-sinonimos.component.scss'] | ||
7 | }) | ||
8 | export class PopoverSinonimosComponent implements OnInit { | ||
9 | |||
10 | constructor() { } | ||
11 | |||
12 | ngOnInit() { | ||
13 | } | ||
14 | |||
15 | } | ||
16 |