UNPKG

@music-loopy/loops

Version:

A React component library for Music Loopy Applications and websites

52 lines (51 loc) 1.37 kB
import { fn } from '@storybook/test'; import PartitionedInput from './index'; // More on how to set up stories at: https://storybook.js.org/docs/writing-stories#default-export export default { title: 'Components/PartitionedInput ', component: PartitionedInput, parameters: { // Optional parameter to center the component in the Canvas. More info: https://storybook.js.org/docs/configure/story-layout layout: 'centered' }, // This component will have an automatically generated Autodocs entry: https://storybook.js.org/docs/writing-docs/autodocs tags: ['autodocs'], // More on argTypes: https://storybook.js.org/docs/api/argtypes argTypes: { length: { control: 'number' } }, // Use `fn` to spy on the onClick arg, which will appear in the actions panel once invoked: https://storybook.js.org/docs/essentials/actions#action-args args: { onClick: function onClick() {} } }; export var Common = { args: { length: 4, onChange: function onChange() {} } }; export var Danger = { args: { length: 4, onChange: function onChange() {}, border: 'danger' } }; export var Shake = { args: { length: 4, onChange: function onChange() {}, border: 'danger', shake: true } }; export var CustomSize = { args: { length: 6, onChange: function onChange() {}, border: 'primary' } };