We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/get-convex/convex-backend'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/* eslint-disable react/jsx-key */
import { Meta, StoryObj } from "@storybook/nextjs";
import { BreadcrumbLink } from "../BreadcrumbLink/BreadcrumbLink";
import { Breadcrumbs } from "./Breadcrumbs";
const meta = { component: Breadcrumbs } satisfies Meta<typeof Breadcrumbs>;
export default meta;
type Story = StoryObj<typeof meta>;
export const Primary: Story = {
args: {
children: [
<BreadcrumbLink href="/">Home</BreadcrumbLink>,
<BreadcrumbLink href="/clothing">Clothing</BreadcrumbLink>,
<BreadcrumbLink href="/clothing/pants">Pants</BreadcrumbLink>,
],
},
};
export const WithOtherChildren: Story = {
args: {
children: [
<span className="p-3">span</span>,
<h1>h1</h1>,
<div className="w-56 bg-yellow-400">div</div>,
],
},
};