DimiMikadze / create-react-library

React NPM library starter kit based on Facebook's create react app
MIT License
602 stars 60 forks source link

Exporting css #75

Closed danydhondt closed 4 years ago

danydhondt commented 4 years ago

In my library I create a css file to style my components. When I run the demo, my components style correctly. However, when I build my library and import a component in the consuming app, the component isn't styled. Probably I'm doing something wrong but I haven no idea what that could be.

DimiMikadze commented 4 years ago

Hi, you need to explicitly require CSS file from the library, since it's not bundled with Javascript code during the build.

import {libraryName}/index.css

danydhondt commented 4 years ago

Thanks DimiMikadze! will try that