import React from "react"; import { FieldInput, FieldLabel, FieldWrapper } from "./field.style"; export const InputField = ({ id, placeHolder, value, label, onChange, inputRef }) => { return ( {label} ); }; InputField.defaultProps = { id: `input-${(Math.random() * 10).toString()}`, };