import { Inter } from '@next/font/google' import { Character } from '../utils/types' const inter = Inter({ subsets: ['latin'] }) import { Container, Card, Col, Text } from "@nextui-org/react"; export const CharacterCard = (props: Character) => ( {props.species} {props.name} ); // const CharacterCard = (props: Character) => { // return ( // // {''} //

// {props.name} -> //

//

// {props.species} //

//
// ) // } export default CharacterCard