I am working on integrating react package of content builder.
There are lots of files which needs to be keep in public folder and then add the references of css and js in index.html file
<link href="/assets/minimalist-blocks/content.css" rel="stylesheet" type="text/css" />
<link href="/assets/ionicons/css/ionicons.min.css" rel="stylesheet">
<script src="/contentbuilder/lang/en.js"></script>
<script src="/assets/minimalist-blocks/content.js" type="text/javascript"></script>
Now the css is breaking all others application styles.
I am thinking to import css files in only the component where package is required, but since I am not aware of how to import from public folder, I copied above two css files and put inside the src folder and imported. but it seems css files are using some other css fonts etc. so its not able to work...
Can anyone guide me how to import the css files from public folder to any component.
Thanks
