Permite añadir eventos a la p
This commit is contained in:
3
src/app/view-evento/view-evento.component.html
Normal file
3
src/app/view-evento/view-evento.component.html
Normal file
@@ -0,0 +1,3 @@
|
||||
<p>
|
||||
view-evento works!
|
||||
</p>
|
||||
0
src/app/view-evento/view-evento.component.scss
Normal file
0
src/app/view-evento/view-evento.component.scss
Normal file
24
src/app/view-evento/view-evento.component.spec.ts
Normal file
24
src/app/view-evento/view-evento.component.spec.ts
Normal file
@@ -0,0 +1,24 @@
|
||||
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
import { IonicModule } from '@ionic/angular';
|
||||
|
||||
import { ViewEventoComponent } from './view-evento.component';
|
||||
|
||||
describe('ViewEventoComponent', () => {
|
||||
let component: ViewEventoComponent;
|
||||
let fixture: ComponentFixture<ViewEventoComponent>;
|
||||
|
||||
beforeEach(async(() => {
|
||||
TestBed.configureTestingModule({
|
||||
declarations: [ ViewEventoComponent ],
|
||||
imports: [IonicModule.forRoot()]
|
||||
}).compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(ViewEventoComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
}));
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
14
src/app/view-evento/view-evento.component.ts
Normal file
14
src/app/view-evento/view-evento.component.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-view-evento',
|
||||
templateUrl: './view-evento.component.html',
|
||||
styleUrls: ['./view-evento.component.scss'],
|
||||
})
|
||||
export class ViewEventoComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit() {}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user