import React from "react"; const Input = (props) => (
{props.error &&
{props.error}
}
); export default Input;