skip to Main Content

Reactjs – How to access nested json object in tsx file?

I am trying to access nested JSON objects such as the code below, which works currently. <img id="inactive-drive2" src='/src/assets/image/InActiveDrive.png' className={info.data.drives[1]?.isActive ? "d-none" : ""} /> If I change my code to this : <img id="inactive-drive2" src='/src/assets/image/InActiveDrive.png' className={info.data.drives[1].isActive ? "d-none" :…

VIEW QUESTION
Back To Top
Search