Input.js 166 B

1234567
  1. import React from "react";
  2. const Input = ({onChange, value, type = "text"}) => (
  3. <input type={type} onChange={onChange} value={value} />
  4. );
  5. export default Input;