1
0
Fork 0
mirror of synced 2024-09-21 11:53:49 +12:00
budibase/packages/builder/src/components/integration/index.svelte

15 lines
245 B
Svelte
Raw Normal View History

2020-12-19 07:19:43 +13:00
<script>
import { TextArea } from "@budibase/bbui"
const QueryTypes = {
SQL: "sql",
}
export let queryType
export let query
</script>
{#if queryType === QueryTypes.SQL}
<TextArea thin label="Query" bind:value={query} />
{/if}