티스토리 뷰
1. 파일과 폴더 만들기
🔥clean code를 합시다 🔥
hooks📁
ㄴuseInput.js
custom hook을 만들 때 파일은 js 파일로 만들어주어야 한다.
2. useInput.js 코드 작성하기
import { useState } from "react";
export default function useInput() {
const [inputValue, setInputValue] = useState("");
const handInput = (e) => {
setInputValue(e.target.value);
};
const InitialValue = () => {
setInputValue("");
};
return [inputValue, handInput, InitialValue];
}
3. useInput hook 사용하기
const [name, nameHandler, nameInitialValue] = useInput("");
const [passsWord, passWordHandler, passsWordInitialValue] = useInput("");
const [nickName, nickNameHandler, nickNameInitialValue] = useInput("");
const handleLoginInfoSubit = (e) => {
e.preventDefault();
if (!name || !passsWord) {
return;
}
onAddLogin({
id: "",
name,
passsWord,
nickName,
});
nameInitialValue();
passsWordInitialValue();
nickNameInitialValue();
};
return (
<LoginBox>
<LoginForm onChange={handleLoginInfoSubit}>
<Title>로그인</Title>
<InputBoxs>
<Inputs
type="text"
value={name}
onChange={nameHandler}
placeholder="아이디를 입력해주세요"
maxLength={10}
/>
<Inputs
type="password"
value={passsWord}
onChange={passWordHandler}
placeholder="비밀번호를 입력해주세요."
maxLength={15}
/>
</InputBoxs>
<ButtonBoxs>
<LoginButton>로그인</LoginButton>
<SignUpLink to="/signup">아직 회원이 아니신가요? </SignUpLink>
</ButtonBoxs>
</LoginForm>
</LoginBox>
);
}
'TIL' 카테고리의 다른 글
tanstack-query ~ 리펙토링까지 (0) | 2024.02.27 |
---|---|
Outsourcing-Project 시작! (Figma 활용) (0) | 2024.02.23 |
.env.local 환경변수 사용하기 (0) | 2024.02.20 |
AXIOS 사용해보기 (2) | 2024.02.17 |
useNavigate & <Link /> (1) | 2024.02.16 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- axios 사용하기
- axios instance 작성하기
- git cache
- styled component 조건부 사용방법
- Fetch와 Axios 의 장단점
- styled component 설치방법
- readme 작성 방법
- simple Icon 사용방법
- 유효성검사 css
- Warning: validateDOMNesting(...): <li> cannot appear as a descendant of <li>
- 영화별점만들기
- axios CRUD
- Warning: A component is changing an uncontrolled input to be controlled.
- 에러모음집
- Warning: Each child in a list should have a unique "key" prop.
- axiosinstance 사용 시 토큰 사용 법
- readme 작성해야 하는 이유
- readme 이미지 추가 방법
- readme작성해보기
- 별점 색채우기
- axios 설치하기
- nextjs 토큰 만료처리하기
- 유효성검사
- styled component 사용방법
- readme 역할
- styled component GlobalStyle 사용방법
- 별점만들기
- 영화 별점
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함