1
0
Fork 0
mirror of synced 2024-07-03 05:20:32 +12:00
budibase/packages/builder/src/components/automation/AutomationBuilder/AutomationBuilder.svelte

11 lines
243 B
Svelte
Raw Normal View History

<script>
2021-03-16 03:00:34 +13:00
import { automationStore } from "builderStore"
2020-10-27 01:25:26 +13:00
import Flowchart from "./FlowChart/FlowChart.svelte"
$: automation = $automationStore.selectedAutomation?.automation
</script>
{#if automation}
2022-02-16 02:03:24 +13:00
<Flowchart {automation} />
2021-03-16 03:00:34 +13:00
{/if}