REACT_HOOKS useInput 노마드코더

Eunsu·2021년 10월 28일
0

@ React_HOOKS

목록 보기
7/11
post-thumbnail
import { useState } from "react";

const useInput = (initialValue, validator) => {
  const [value, setValue] = useState(initialValue);
  let checkValue = true;
  const onChange = (e) => {
    if (typeof validator === "function") {
      checkValue = validator(value);
    }
    if (checkValue) setValue(e.target.value);
  };
  return { value, onChange };
};

const HookInputs = () => {
  const validator = (value) => value.length < 8;
  const user = useInput("", validator);

  return (
    <>
      <input type="text" {...user} /> <button>입력</button>
    </>
  );
};

export default HookInputs;

profile
function = (Develope) => 'Hello World'

0개의 댓글

관련 채용 정보