JS: React
Theory: Handling class names
Interactive UI elements have more than one display state. For example, the modal window may be open or closed, and the switch may be on or off. Generally, you change these states using classes.
When you work directly with the DOM, you can use classList, which contains convenient methods for adding and removing classes. React doesn't offer many conveniences out of the box. The className property is just a string, and strings are awkward to process:
React's creators suggest resolving this issue using the classnames package, which is easy to use. The approach is straightforward: we generate an appropriate object instead of manipulating a string directly.
Then we convert this object into a string:
Let's substitute specific values:
We can use the cn() function to accept any number of arguments as input.
If the argument is a string, it's considered a required class. If it's an object, then the logic described above will work:
We can also set mandatory classes in the object:
Sometimes, we generate the class name dynamically. In that case, we can use the following code:

