We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
How do we convert the dashed to camelcase for css class names? I usually do it in webpack.config.js file with the following..
webpack.config.js
{ loader: 'css-loader', options: { camelCase: true } }
This doesn't work for me. Probably dva is using something else?
.auth-form{ background: white; padding: 20px; }
import style from './Test.css render(){ return <form className={style['auth-form']}> ... </form> }
Need to be able to call style.authForm after import.
style.authForm
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
How do we convert the dashed to camelcase for css class names? I usually do it in
webpack.config.js
file with the following..This doesn't work for me. Probably dva is using something else?
More details
Test.css
TestComponent.js
Need to be able to call
style.authForm
after import.The text was updated successfully, but these errors were encountered: