You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import React from 'react'
|
|
|
|
const PokemonAbility = ({ abilityName }) => (
|
|
<div className="pokemon-ability">
|
|
<div className="pokemon-ability-type">Hidden ability</div>
|
|
<div className="pokemon-ability-name">
|
|
{abilityName}
|
|
</div>
|
|
</div>
|
|
)
|
|
|
|
export default PokemonAbility
|