import React from 'react'; import styles from './index.module.css'; export interface VideoCardProps { title: string; desc: string; videoUrl?: string; detailUrl: string; direction?: 'left' | 'right'; imgUrl?: string; } const VideoCard: React.FC = ({ title, direction = 'left', detailUrl, imgUrl, }) => { if (direction === 'left') { return (
{title}
查看详情
); } else { return (
{title}
查看详情
); } }; export default VideoCard;