import {InputComponent as Input} from './input.component'; import type {Meta, StoryObj} from '@storybook/react'; import React from 'react'; const meta: Meta = { title: 'Molecules/Input', component: Input, }; export default meta; type Story = StoryObj; export const Default: Story = { render: (args) => , args: { label: 'Email', hint: 'This is a hint text to help user.', error: false, disabled: false, placeholder: 'olivia@untitledui.com', mandatory: true, }, };