Skip to content
Snippets Groups Projects
Input.js 224 B
Newer Older
  • Learn to ignore specific revisions
  • Min Dong Hyeun's avatar
    Min Dong Hyeun committed
    function Input({type,value,onChange,placeholder}){
        return(
            <input
            type={type}
            placeholder={placeholder}
            onChange={onChange}
            value={value}
            />
        );
    }
    
    export default Input;