✅Lighthouse는 끝

Untitled

✅클래스 합성

props로 clssName을 적어서 따로 빼준다. restProps로 받으면 따로 처리할 수 없기 때문.

props로 className = “”을 줘도 return내부 className에 값이 할당되어있으면 그것이 우선한다.

const combinedClassNames = 
`${styles.button} ${className}`.trim();

✅[DOM] Input elements should have autocomplete attributes (suggested: "new-password")

Untitled

autoComplete = “new-password”

회원가입 password, password confirm input란에 사용

autoComplete = “current-password”

로그인 password input에 사용

✅HTML autocomplete 특성

여러가지 값들이 있다.

HTML autocomplete 특성 - HTML: Hypertext Markup Language | MDN

✅암호 양식 만들기