houdini/app/javascript/stories/index.jsx
2020-06-24 13:04:03 -05:00

15 lines
No EOL
344 B
JavaScript

// License: LGPL-3.0-or-later
import React from 'react';
import { Button } from '@storybook/react/demo';
export default { title: 'Button' };
export const withText = () => <Button>Hello Button</Button>;
export const withEmoji = () => (
<Button>
<span role="img" aria-label="so cool">
😀 😎 👍 💯
</span>
</Button>
);