import { BotCardVO } from '@/app/home/bots/components/bot-card/BotCardVO'; import styles from './botCard.module.css'; export default function BotCard({ botCardVO }: { botCardVO: BotCardVO }) { return (
icon
{botCardVO.name}
{botCardVO.description}
{botCardVO.adapterLabel}
{botCardVO.usePipelineName}
); }