mirror of
https://github.com/remvze/moodist.git
synced 2025-12-17 00:44:14 +00:00
18 lines
347 B
TypeScript
18 lines
347 B
TypeScript
import type { Meta, StoryObj } from '@storybook/react';
|
|
|
|
import { SpecialButton } from './special-button';
|
|
|
|
const meta: Meta<typeof SpecialButton> = {
|
|
component: SpecialButton,
|
|
title: 'SpecialButton',
|
|
};
|
|
|
|
export default meta;
|
|
|
|
type Story = StoryObj<typeof meta>;
|
|
|
|
export const Default: Story = {
|
|
args: {
|
|
children: 'Hello World',
|
|
},
|
|
};
|