-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support req #34
Comments
Either of these ways should work import { Button } from 'svelma/src/index.js';
import Button from 'svelma/src/components/Button.svelte'; Also see pull request #31 which should allow you to just import components directly when its merged |
Thanks for the reply.
with
but the
I still get errors. |
import Dialog from 'svelma/src/components/Dialog'; and the demo code from the docs works for me on Svelma 0.3.0... I'm not using Sapper though... What do the errors say? |
Actually it was a doc glitch ...
...
etc Could you please fix the doc? |
Done, thanks for finding this! |
From the Dialogs doc:
if I want to use Dialogs I need to
import { Button, Dialog } from 'svelma'
But I need to use SSR,
from the npm page:
So how should my import line read in order to be able to use Dialog the SSR way?
The text was updated successfully, but these errors were encountered: