/** * * Textarea * */ import React from 'react'; import PropTypes from 'prop-types'; import { Textarea as StyledTextArea } from '@buffetjs/styles'; function Textarea(props) { return ; } Textarea.propTypes = { name: PropTypes.string.isRequired, }; export default Textarea;