(0621)reactNode의 children이 가지는 특징

<Layout>
  <Contents />
</Layout>

위와 같은 코드에서 Layout의 children 은 Contents이다.

하지만 아래와 같이

<Layout>
  <Contents1 />
  <Contents2 />
</Layout>

2개 이상의 component를 감싸게 되면
Layout의 children은 Contents가 아니라
[<Contents1 />, <Contents2 />]이 된다.

따라서 2개 이상의 component를 감싼 Layout에서
<Contents1 />을 선택하고 싶을 때는
반드시 children[0] 이런식으로 item을 지정해주어야 한다.


[david hwang]
Written by@[david hwang]
깊게 이해하고 넓게 소통합니다.

GitHubMedium