hiuphub-gamified
Version:
app of gamified
17 lines (15 loc) • 374 B
JavaScript
import React from "react";
export default function Input(props) {
return (
<input
type={props.type || "text"}
style={{ ...props.style }}
name={props.name || "search"}
placeholder={props.placeholder || "Search"}
onChange={props.onChange}
onKeyDown={props.onKeyDown}
// value={props.value || ""}
{...props}
/>
);
}