Skip to content

Instantly share code, notes, and snippets.

View siuling88's full-sized avatar

Johanna Chan siuling88

  • Caracas-Venezuela
View GitHub Profile
import { Component, OnInit } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
import { GenteService } from '../../services/gente.service';
@Component({
selector: 'formacion-detalle',
templateUrl: 'detalle.component.html',
})
export class DetalleComponent implements OnInit {
persona: any = {};
<h2>Detalle</h2>
<div>
<h3>{{ persona.nombre }}</h3>
<h4>{{ persona.edad}}</h4>
<p>{{ persona.estadoCivil }}</p>
</div>