Created
March 14, 2019 18:52
-
-
Save alexmachina/c42935b6189f3ffa24eb111f972de422 to your computer and use it in GitHub Desktop.
Bemmer
This file contains hidden or 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
const bemmer = Bemmer('gdp-notifications'); | |
<div className={bemmer('.root')}> // gdp-notifications__root | |
<i className={bemmer('bell-icon')} /> //gdp-notifications__root__bell-icon | |
<span className={bemmer('some-label') /> // gdp-notifications__root__some-label | |
<div className={bemmer('.cards')}> // gdp-notifications__root__cards | |
<button className={bemmer(('bell-icon') />} /> //gdp-notifications__root__cards__bell-icon | |
<span className={bemmer('time-elapsed')} /> //gdp-notifications__root__cards__time-elapsed | |
</div> | |
</div> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment