import { Meta, StoryObj } from '@storybook/react' import { Button, Fieldset, Input, Label, YStack } from 'tamagui' import { FormWrapper } from './FormWrapper' const meta: Meta = { title: 'ui/FormWrapper', parameters: { layout: 'centered' }, component: FormWrapper, } type Story = StoryObj export const Basic: Story = { render: () => { return (
{/* the footer will be pushed to the bottom */}
) }, } export default meta