Skip to content

Conversation

wo-o29
Copy link
Contributor

@wo-o29 wo-o29 commented Aug 25, 2025

DOM 참조 정리 및 들여쓰기 수정

  • 존재하지 않는 DOM 노드인 profile을 참조하는 코드를 제거했습니다.
  • editButton ID 참조가 없으므로 'button'으로 변경했습니다.
<!-- id가 profile인 DOM이 존재하지 않음 -->
<!-- id가 editButton인 DOM이 존재하지 않아 button으로 변경 -->
<form id="form">
  <label>
    First name:
    <b id="firstNameText">Jane</b>
    <input
      id="firstNameInput"
      value="Jane"
      style="display: none">
  </label>
  <label>
    Last name:
    <b id="lastNameText">Jacobs</b>
    <input
      id="lastNameInput"
      value="Jacobs"
      style="display: none">
  </label>
  <button type="submit" id="button">Edit Profile</button>
  <p><i id="helloText">Hello, Jane Jacobs!</i></p>
</form>

<style>
* { box-sizing: border-box; }
body { font-family: sans-serif; margin: 20px; padding: 0; }
label { display: block; margin-bottom: 20px; }
</style>
  • Fragment 부분의 들여쓰기를 수정하여 코드 가독성을 향상시켰습니다.

필수 확인 사항

선택 확인 사항

  • 번역 초안 작성Draft Translation
  • 리뷰 반영Resolve Reviews

Copy link

vercel bot commented Aug 25, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
ko-react-dev Building Building Preview Comment Aug 25, 2025 0:59am
1 Skipped Deployment
Project Deployment Preview Comments Updated (UTC)
ko-legacy-reactjs-org Ignored Ignored Preview Aug 25, 2025 0:59am

Copy link
Collaborator

@lumirlumir lumirlumir left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PR 작업해주셔서 감사드립니다!

다만, #1290 #1295 #1299 PR 모두 예제 코드 수정 관련 PR이라, (예제에 문제가 있다는 점은 확인했습니다.) 영어 원문을 그대로 받아오는 한국 공식 문서 특성 상 해당 내용들은 승인이 어렵습니다.

해당 내용들은 업스트림인 영어 원문 레포지토리 ( https://github.com/reactjs/react.dev )에 직접 PR을 올려서 진행해주시는 편이 더 좋을 것 같습니다. (PR이 승인 될 경우, 해당 내용들은 자동으로 한국 공식 문서로 넘어옵니다.)

이러한 이유로 부득이하게 예제 관련 PR들은 close 하도록 하겠습니다.

@wo-o29
Copy link
Contributor Author

wo-o29 commented Sep 1, 2025

PR 작업해주셔서 감사드립니다!

다만, #1290 #1295 #1299 PR 모두 예제 코드 수정 관련 PR이라, (예제에 문제가 있다는 점은 확인했습니다.) 영어 원문을 그대로 받아오는 한국 공식 문서 특성 상 해당 내용들은 승인이 어렵습니다.

해당 내용들은 업스트림인 영어 원문 레포지토리 ( https://github.com/reactjs/react.dev )에 직접 PR을 올려서 진행해주시는 편이 더 좋을 것 같습니다. (PR이 승인 될 경우, 해당 내용들은 자동으로 한국 공식 문서로 넘어옵니다.)

이러한 이유로 부득이하게 예제 관련 PR들은 close 하도록 하겠습니다.

확인했습니다! 답변 감사합니다:)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants