We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Arize-ai/phoenix'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { Meta, StoryFn } from "@storybook/react";
import { LinkButton, LinkButtonProps } from "@phoenix/components";
const meta: Meta = {
title: "LinkButton",
component: LinkButton,
parameters: {
layout: "centered",
},
};
export default meta;
const Template: StoryFn<LinkButtonProps> = (args) => <LinkButton {...args} />;
/**
* Buttons are used to perform actions within the UI
*/
export const Default = Template.bind({});
Default.args = {
children: "LinkButton",
};
/**
* Use the `variant` prop to change the appearance of the button
*/
export const Danger = Template.bind({});
Danger.args = {
children: "Danger",
variant: "danger",
};