import { Meta, StoryFn } from '@storybook/react'
import React from 'react'
import {
Box,
Button,
DropDown,
DropDownMenu,
DropDownTrigger,
Icon,
Input,
Label,
} from '../../index.js'
import StoryWrapper from '../../utils/story-wrapper.jsx'
import { FormGroup, FormMessage, InputGroup } from './index.js'
export const FullFeaturedFormGroup: StoryFn = () => (
With an message below
)
export const Full: StoryFn = () => (
)
const meta: Meta = {
title: 'DesignSystem/Molecules/FormGroup',
component: FormGroup,
}
export default meta