let hello let another = { thing: 1 } export default () => ( <>

result1: {hello?.world ? 'something' : 'nothing'}

result2: {another?.thing ? 'something' : 'nothing'}

)