houdini/app/javascript/stories/index.jsx

15 lines
344 B
React
Raw Normal View History

2020-06-23 21:49:46 +00:00
// 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>
);