import React from "react"; import "./FormInput.scss"; const FormInput = ({ handleChange, label, ...otherProps }) => { return (
{label ? ( ) : null}
); }; export default FormInput;