// 视频预览组件 import { memo } from 'react'; import { useI18n } from '../i18n'; interface VideoPreviewProps { videoUrl: string; } export const VideoPreview = memo(function VideoPreview({ videoUrl }: VideoPreviewProps) { const { t } = useI18n(); const handleDownload = () => { const link = document.createElement('a'); link.href = videoUrl; link.download = `manim-animation-${Date.now()}.mp4`; link.click(); }; return (