import React from "react"; import { Card, Tabs, TabsProps } from 'antd' import { FeatureCardContent } from "./FeatureCardContent"; import './index.css' const items: TabsProps['items'] = [ { key: '1', label: `Test ChatGPT 3.5`, children: , }, { key: '2', label: `Test ChatGPT 4.0`, children: , }, { key: '3', label: `Test Gemini`, children: , }, ]; export function FeatureCard() { return ( ) }