You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
579 B
579 B
id | title | layout | permalink | prev | next |
---|---|---|---|---|---|
self-closing-tag-ko-KR | 자기 자신을 닫는 태그 | tips | self-closing-tag-ko-KR.html | if-else-in-JSX-ko-KR.html | maximum-number-of-jsx-root-nodes-ko-KR.html |
JSX에서 <MyComponent>
는 유효하지 않고 <MyComponent />
만 유효합니다. 모든 태그는 닫혀야 합니다. 자기 자신을 닫는 형식을 사용하거나 대응되는 닫는 태그(</MyComponent>
)가 필요합니다.
주의:
모든 React 컴포넌트는 자기 자신을 닫을 수 있습니다:
<div />
.<div></div>
와 동일합니다.