aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/molecules/buttons/help-button.stories.tsx
blob: 2b04a9c12b2f86e4aa353d6bb4387dc122c4ba86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { ComponentMeta, ComponentStory } from '@storybook/react';
import { IntlProvider } from 'react-intl';
import HelpButtonComponent from './help-button';

export default {
  title: 'Molecules/Buttons',
  component: HelpButtonComponent,
} as ComponentMeta<typeof HelpButtonComponent>;

const Template: ComponentStory<typeof HelpButtonComponent> = (args) => (
  <IntlProvider locale="en">
    <HelpButtonComponent {...args} />
  </IntlProvider>
);

export const HelpButton = Template.bind({});