import { Card } from '@/components/ui/card'; import { ExternalLink, Link2 } from 'lucide-react'; import { motion } from 'framer-motion'; import { ScrollArea, ScrollBar } from "@/components/ui/scroll-area"; interface Source { title: string; url: string; snippet: string; } interface SourceListProps { sources: Source[]; } export function SourceList({ sources }: SourceListProps) { return (
{source.snippet.replace(/\*\*/g, '')}
)}