import React from 'react'; import { Row, Col } from 'react-styled-flexboxgrid'; import { Field } from 'redux-form'; import { FormGroup, Input, Button, BinIcon, QueryBreakpoints, Divider, Editor } from 'joyent-ui-toolkit'; const { SmallOnly } = QueryBreakpoints; const TextareaKeyValue = ({ name, formName, formValue, handleSubmit, onRemove, textarea }) => (
); const InputKeyValue = ({ name, formName, formValue, handleSubmit, onRemove, textarea }) => (
); export default ({ textarea, ...rest }) => textarea ? : ;