import React from 'react' import Input from './Input' export default function FormInput({ type, name, onChange, value, label, className, error, autoComplete, autoFocus, placeholder, disabled, readOnly, }) { const id = `${name}-${label}` return (
) }