import { Meta, StoryObj } from '@storybook/react' import SocialTextField from '..' import { SocialTextFieldProps } from '../types' const meta: Meta = { title: '@baseapp-frontend | designSystem/Inputs/SocialTextField', component: SocialTextField, } export default meta type Story = StoryObj export const Default: Story = { args: { isReply: false, placeholder: 'Type your comment...', }, } export const ReplyMode: Story = { args: { isReply: true, replyTargetName: 'John Doe', placeholder: 'Type your reply...', }, render: (args) => (
Custom content inside the text field
), }