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
For example is have code like this
//component.js import { Button, Radio } from 'my-library'; const Component = props => <div><Button></Button><Radio></div>;
//Theme.js const contextTheme = { Button: require('my-library/button/theme1.css'), Radio: require('my-library/radio/theme1.css'), Other: require('my-library/other/theme1.css'), }; <ThemeProvider them={contextTheme} > <Component></Component> </ThemeProvider>
I'm using extract-text-plugin for webpack. Will my final build contains CSS of other ass well ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For example is have code like this
I'm using extract-text-plugin for webpack.
Will my final build contains CSS of other ass well ?
The text was updated successfully, but these errors were encountered: