rsnext/test/integration/optional-chaining-nullish-coalescing/pages/optional-chaining.js

10 lines
198 B
JavaScript
Raw Normal View History

let hello
let another = { thing: 1 }
export default () => (
<>
<p>result1: {hello?.world ? 'something' : 'nothing'}</p>
<p>result2: {another?.thing ? 'something' : 'nothing'}</p>
</>
)