import { Meta, StoryFn } from '@storybook/react'
import React from 'react'
import StoryWrapper from '../../utils/story-wrapper.jsx'
import { Box } from '../index.js'
import { TextArea } from './index.js'
export const Default: StoryFn = () => (
)
const meta: Meta = {
title: 'DesignSystem/Atoms/TextArea',
component: TextArea,
}
export default meta