// src/components/PokemonLink.tsx
import type { JSX } from 'react'
import { Link } from 'tuono'
import styles from './PokemonLink.module.css'
interface PokemonLinkProps {
id: number
name: string
}
export default function PokemonLink({
id,
name,
}: PokemonLinkProps): JSX.Element {
return (
{name}
)
}