Permite añadir eventos a la p

This commit is contained in:
2021-02-02 12:02:37 +01:00
parent e8b52ec48d
commit af852bff37
14 changed files with 231 additions and 20 deletions

View File

@@ -0,0 +1,3 @@
<p>
view-evento works!
</p>

View 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();
});
});

View 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() {}
}