Importing components this way does not work:
import { Card, CardText, CardActions, Button } from 'svelte-materialify/src';
This way must be used instead:
import Card from 'svelte-materialify/src/components/Card/Card.svelte';
import CardText from 'svelte-materialify/src/components/Card/CardText.svelte';
Importing components this way does not work:
import { Card, CardText, CardActions, Button } from 'svelte-materialify/src';This way must be used instead:
import Card from 'svelte-materialify/src/components/Card/Card.svelte';import CardText from 'svelte-materialify/src/components/Card/CardText.svelte';