[react] 조건(condition)에 따라 React Element에 속성(attribute, props?)을 추가하는 예시 (조건에 따라 tabIndex 속성을 넣었다 뺐다 하기, 조건부 속성 추가) By itpsolver | 6월 21, 2023 0 Comment 소스 예시 let props = condition ? {tabIndex: 1} : {}; let div = <div {...props} /> 출처 https://stackoverflow.com/questions/36523225/dynamic-tabindex-attribute-in-jsx-react