mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-09 00:04:10 +00:00
14 lines
432 B
Svelte
14 lines
432 B
Svelte
<script lang="ts">
|
|
import AiChatLayout from './copilot/chat/AiChatLayout.svelte'
|
|
import type { FlowBuilderProps } from './flow_builder'
|
|
import FlowBuilder from './FlowBuilder.svelte'
|
|
|
|
let { flowStore: oldFlowStore, disableAi, ...props }: FlowBuilderProps = $props()
|
|
|
|
let flowStore = $state(oldFlowStore)
|
|
</script>
|
|
|
|
<AiChatLayout noPadding={true} {disableAi}>
|
|
<FlowBuilder {flowStore} {disableAi} {...props} />
|
|
</AiChatLayout>
|