import { ComponentMeta, ComponentStory } from '@storybook/react';
import { IntlProvider } from 'react-intl';
import BackToTopComponent from './back-to-top';
/**
* BackToTop - Storybook Meta
*/
export default {
title: 'Molecules/Buttons',
component: BackToTopComponent,
argTypes: {
className: {
control: {
type: 'text',
},
description: 'Set additional classnames to the button wrapper.',
table: {
category: 'Styles',
},
type: {
name: 'string',
required: false,
},
},
target: {
control: {
type: 'text',
},
description: 'An element id (without hashtag) to use as anchor.',
type: {
name: 'string',
required: true,
},
},
},
decorators: [
(Story) => (
),
],
} as ComponentMeta;
const Template: ComponentStory = (args) => (
);
/**
* Buttons Stories - Back to top
*/
export const BackToTop = Template.bind({});
BackToTop.args = {
target: 'top',
};