CSS properties with conditional styles and falsy values
I'm looking for the answer to the question how should I use styles with conditional operators. What code example would be the best? Can we use non-CSS values such as undefined, null, false, etc.? margin: isOpen ? '10px' : undefined…