반응형
HTML 예시
<label for="username">Username:</label>
<input type="text" id="username" />
변환된 JSX
import React from 'react';
function MyComponent() {
return (
<div>
<label htmlFor="username">Username:</label>
<input type="text" id="username" />
</div>
);
}
export default MyComponent;
주요 변경 사항
for 속성을 htmlFor로 변경합니다.
반응형
'개발자정보' 카테고리의 다른 글
React Network Error 해결 방법 (0) | 2024.10.02 |
---|---|
Github에 node_modules 폴더 제외하는 방법 (0) | 2024.09.26 |
redirect in react 18에 오류 해결 방법 (1) | 2024.09.24 |
This expression is not callable. Type 'typeof import("X:/xxx/node_modules/date-fns/format")' has no call signatures. (0) | 2024.09.11 |
React, Module '"react-i18next"' has no exported member 'TFunction'. 오류 해결 (0) | 2024.09.11 |