UNPKG

brightyui

Version:

Brighty UI library

23 lines 687 B
import Input from '../components/Input/Input'; // More on how to set up stories at: https://storybook.js.org/docs/react/writing-stories/introduction var meta = { title: 'Example/Input', component: Input, tags: ['autodocs'], }; export default meta; // More on writing stories with args: https://storybook.js.org/docs/react/writing-stories/args export var InputStory = { args: { placeholder: 'Placeholder', }, }; export var InputDeletableStory = { args: { placeholder: 'Placeholder', value: 'Value', deletable: true, onDelete: function () { return console.log('delete'); }, }, }; //# sourceMappingURL=Input.stories.js.map