Let's say I have these 2 variables:
const test1 = (<div> ..... </div>); const test2 = (<div> ..... </div>); How do I combine them together (meaning - the code of test1 followed by the code of test2) into a "valid" variable called test3 and then render it like:
{this.array.length !== 0 ? test3 : null} ?