Please enable JavaScript.
Coggle requires JavaScript to display documents.
Packaging a JS Component Library for distrubition, The main challenge in…
-
The main challenge in packaging a React Component is surprisingly not Javascript, but all the Assets that might be related to that component such as CSS, Images, SVGs and fonts. These assets are directly related to our Javascript code via some of the following statements:
- imports image from './image.{png,jpg,svg}' in Javascript
- import classNames from './styles.{css,scss,less)' in Javascript
- url(image.{png,jpg,svg}) in CSS
- font-family and import in CSS