The following code gives me an eslint error and no matter what I try an error is given. What is wrong?
<div>
{condition === CONDITION_ONE ||
condition === CONDITION_TWO ||
condition === CONDITION_THREE && (
<Component />
)}
</div>
3