storybook/code/examples/external-docs/components/emoji-button.stories.tsx
Norbert de Langen c2bbe43d02
stage0
2022-07-21 11:24:07 +02:00

9 lines
319 B
TypeScript

import React from 'react';
import { EmojiButton } from './emoji-button';
export default { component: EmojiButton, title: 'Examples / Emoji Button' };
export const WithArgs = (args: any) => <EmojiButton {...args} />;
WithArgs.args = { label: 'With args' };
export const Basic = () => <EmojiButton label="Click me" />;