"use client"; import { Source, Sources, SourcesContent, SourcesTrigger, } from "@/components/ai-elements/sources"; const sources = [ { href: "https://stripe.com/docs/api", title: "Stripe API Documentation" }, { href: "https://docs.github.com/en/rest", title: "GitHub REST API" }, { href: "https://docs.aws.amazon.com/sdk-for-javascript/", title: "AWS SDK for JavaScript", }, ]; const Example = () => (
{sources.map((source) => ( ))}
); export default Example;