We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/m-yoshiro/storybook-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import type { Meta, StoryObj } from '@storybook/react';
import { Button } from './Button.jsx';
// More on how to set up stories at: https://storybook.js.org/docs/writing-stories
const meta: Meta<typeof Button> = {
title: 'Example/Button',
component: Button,
tags: ['autodocs'],
};
export default meta;
type Story = StoryObj<typeof Button>;
// More on writing stories with args: https://storybook.js.org/docs/writing-stories/args
export const Primary: Story = {
args: {
primary: true,
label: 'Primary Button',
},
};
export const Secondary: Story = {
args: {
primary: false,
label: 'Secondary Button',
},
};
export const Large: Story = {
args: {
size: 'large',
label: 'Large Button',
},
};
export const Small: Story = {
args: {
size: 'small',
label: 'Small Button',
},
};