mirror of
https://github.com/aljazceru/landscape-template.git
synced 2025-12-19 07:14:22 +01:00
16 lines
455 B
TypeScript
16 lines
455 B
TypeScript
import React from 'react'
|
|
import { ComponentStory, ComponentMeta } from '@storybook/react';
|
|
import FileUploadInput from './FileUploadInput';
|
|
|
|
export default {
|
|
title: 'Shared/Inputs/Files Inputs/Basic',
|
|
component: FileUploadInput,
|
|
|
|
} as ComponentMeta<typeof FileUploadInput>;
|
|
|
|
const Template: ComponentStory<typeof FileUploadInput> = (args) => <FileUploadInput {...args} />
|
|
|
|
|
|
export const DefaultButton = Template.bind({});
|
|
DefaultButton.args = {
|
|
} |