Created
January 31, 2025 13:13
-
-
Save peterjwest/9e86535ea99119be92c9edaa27f11586 to your computer and use it in GitHub Desktop.
BEM classes example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import reactBem from 'react-bem'; | |
class Component() { | |
const name = 'Anna', age = 42; | |
return reactBem(<section className="User:& &-active"> | |
<ul className="&_details"> | |
<li className="&_name"> | |
Name: <span className="&_name &-highlight">{name}</span> | |
</li> | |
<li className="&_age italic">Age: {age}</li> | |
</ul> | |
</section>); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment