I encountered an issue while trying to integrate the "Materialify" and "Carbon Components for Svelte" libraries into my Sapper
project. The components seem to be loading, but without any associated styles. I followed the installation commands provided on their official websites. Currently working on Ubuntu 20.
<script>
import {DataTable} from 'carbon-components-svelte'
</script>
<svelte:head>
<title>Sapper project template</title>
</svelte:head>
<DataTable
headers={[
{key: 'name', value: 'Name'},
{key: 'age', value: 'age'}
]}
rows={[
{id: 0, name: 'Stepan', age: 14},
{id: 1, name: 'Maxim', age: 24}
]}
/>
After following the steps above, the result can be viewed here.