import {FormContainerComponent as FormContainer} from './form-container.component'; import type {Meta, StoryObj} from '@storybook/react'; import React from 'react'; const meta: Meta = { title: 'Molecules/FormContainer', component: FormContainer, }; 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, mandatory: false, }, };