We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a6b531 commit e462a46Copy full SHA for e462a46
src/content/reference/react-dom/client/createRoot.md
@@ -496,7 +496,9 @@ root.render(<App />);
496
흔히 하는 실수는 `createRoot`의 옵션을 `root.render(...)`에 전달하는 것입니다.
497
498
<ConsoleBlock level="error">
499
-경고: `root.render(...)`에 두 번째 인수를 전달했지만, 이 메서드는 하나의 인자만 받을 수 있습니다.
+
500
+Warning: You passed a second argument to root.render(...) but it only accepts one argument.
501
502
</ConsoleBlock>
503
504
해결 방법: 루트 옵션은 `root.render(...)`가 아니라 `createRoot(...)`에 전달하세요.
0 commit comments