1
0
Fork 0
mirror of synced 2024-10-04 03:54:37 +13:00

Export Block and BlockComponent via SDK

This commit is contained in:
Andrew Kingston 2023-07-30 13:07:01 +01:00
parent 3167fcdc76
commit 0b2c6e531c

View file

@ -18,6 +18,8 @@ import { styleable } from "utils/styleable"
import { linkable } from "utils/linkable"
import { getAction } from "utils/getAction"
import Provider from "components/context/Provider.svelte"
import Block from "components/Block.svelte"
import BlockComponent from "components/BlockComponent.svelte"
import { ActionTypes } from "./constants"
import { fetchDatasourceSchema } from "./utils/schema.js"
import { getAPIKey } from "./utils/api.js"
@ -44,4 +46,6 @@ export default {
Provider,
ActionTypes,
getAPIKey,
Block,
BlockComponent,
}