#Svelma
https://github.com/c0bra/svelma/issues/3
## エラー
```
<Button> is not a valid SSR component. You may need to review your build config to ensure that dependencies are compiled, rather than imported as pre-compiled modules
```
## 解決方法
コンパイルするため直接`src`を読み込む必要がある。
```ts
import { Button } from 'svelma'
```
ではなく
```ts
import Button from 'svelma/src/components/Button.svelte'
```
ただしexportされていないComponentもチラホラある..。