import { ComponentMeta, ComponentStory } from '@storybook/react'; 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, }, }, }, } as ComponentMeta; const Template: ComponentStory = (args) => ( ); /** * Buttons Stories - Back to top */ export const BackToTop = Template.bind({}); BackToTop.args = { target: 'top', }; n value='main'>main The frontend of my personal website.Armand Philippot
summaryrefslogtreecommitdiffstats
blob: 2fdcae9dbdd1bea4fb6aff37f327efb4776cad94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27