Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 390 Bytes

jss-plugin-camel-case.md

File metadata and controls

25 lines (19 loc) · 390 Bytes

Camel case syntax

After using this plugin, we can write CSS properties in camel case syntax.

const styles = {
  button: {
    color: 'red',
    fontSize: '12px'
  }
}

Compiles to:

.button-0 {
  color: red;
  font-size: 12px;
}

Demo

CodeSandbox