Skip to content

Instantly share code, notes, and snippets.

@flurin
Created June 27, 2015 11:08
Show Gist options
  • Save flurin/abb35167b92998f14bd0 to your computer and use it in GitHub Desktop.
Save flurin/abb35167b92998f14bd0 to your computer and use it in GitHub Desktop.
CSS Modules in React
:local(.componentName){
  color: #ff
}

in React

import {componentName} from './style.css'

return `
  <div class="${componentName}"></div>
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment