import { Link } from 'tuono' import styles from './PokemonView.module.css' interface Pokemon { name: string id: string weight: number height: number } export default function PokemonView({ pokemon, }: { pokemon?: Pokemon }): JSX.Element { return (
Back {pokemon?.name && (

{pokemon.name}

Weight:
{pokemon.weight}lbs
Height:
{pokemon.height}ft
)}
) }