[react] children 으로 props 넘기는 방법 샘플코드 (pass props to children)

By | 11월 2, 2022

샘플코드

return (
    <>
        {React.cloneElement(children, { prop1: 'AAA', prop2: 'BBB' })}
    </>
);


그냥 편리하게 개량해 본 것

return (
    <>
        {React.cloneElement(props.children, { ..._.omit(props, ['children']) })}
    </>
);
  • children을 omit 하지 않아도 잘 작동하는데, 그냥 찝찝해서 넣어 봄
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments