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.
13 lines
288 B
React
13 lines
288 B
React
3 years ago
|
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
|