Skip to content

Instantly share code, notes, and snippets.

@peterjwest
Created January 31, 2025 13:13
Show Gist options
  • Save peterjwest/9e86535ea99119be92c9edaa27f11586 to your computer and use it in GitHub Desktop.
Save peterjwest/9e86535ea99119be92c9edaa27f11586 to your computer and use it in GitHub Desktop.
BEM classes example
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