Skip to content

Instantly share code, notes, and snippets.

View Fernando-Mauro's full-sized avatar
👾
Cayendo en cenizas

Fernando Mauro Fernando-Mauro

👾
Cayendo en cenizas
View GitHub Profile
@Klerith
Klerith / heroes.js
Created May 7, 2020 17:40
Un pequeño arreglo de héroes para hacer ejercicios
const heroes = [
{
id: 1,
name: 'Batman',
owner: 'DC'
},
{
id: 2,
name: 'Spiderman',
owner: 'Marvel'

Tarea

  1. Crear un nuevo componente dentro de la carpeta SRC llamado CounterApp

  2. El CounterApp debe de ser un Functional Component

  3. El contenido del CounterApp debe de ser:

CounterApp