@me/changelog: CSS Modules

Quick Tips & Cheatsheet

className "gotchas"

Plain string classNames work for global CSS:

className="parent__childItem"

But CSS Modules require the styles[] reference:

className={styles['parent__childItem']}

Be careful when passing classes across component boundaries.